diff --git a/src/azure-cli/HISTORY.rst b/src/azure-cli/HISTORY.rst index 2ab9173690f..acda3930bb0 100644 --- a/src/azure-cli/HISTORY.rst +++ b/src/azure-cli/HISTORY.rst @@ -36,6 +36,12 @@ Release History * Add new commands group 'cdn endpoint rule' to manage rules * Update azure-mgmt-cdn version to 4.0.0 to use api version 2019-04-15 +**Deployment Manager** + +* Add list operation for all resources. +* Enhance step resource for new step type. +* Update azure-mgmt-deploymentmanager package to use version 0.2.0. + **IoT** * Deprecated 'IoT hub Job' commands. diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/_help.py b/src/azure-cli/azure/cli/command_modules/deploymentmanager/_help.py index 19b9012a49f..5887e518b31 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/_help.py +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/_help.py @@ -45,6 +45,15 @@ az deploymentmanager artifact-source show -g rg1 -n contosoServiceArtifactSource """ +helps['deploymentmanager artifact-source list'] = """ +type: command +short-summary: List all artifact sources in a resource group. +examples: + - name: List artifact sources in the given resource group. + text: > + az deploymentmanager artifact-source list -g rg1 +""" + helps['deploymentmanager artifact-source update'] = """ type: command short-summary: Updates an artifact source. @@ -85,6 +94,15 @@ az deploymentmanager rollout show -g rg1 -n contosoServiceRollout --retry-attempt 1 """ +helps['deploymentmanager rollout list'] = """ +type: command +short-summary: List all rollouts in a resource group +examples: + - name: List all rollouts in the resource group + text: > + az deploymentmanager rollout list -g rg1 +""" + helps['deploymentmanager rollout stop'] = """ type: command short-summary: Stop the rollout. @@ -126,6 +144,15 @@ az deploymentmanager service show -g rg1 --service-topology-name contosoServiceTopology -n contosoService1 """ +helps['deploymentmanager service list'] = """ +type: command +short-summary: List all services in a service topology. +examples: + - name: List all the services under the given service topology. + text: > + az deploymentmanager service list -g rg1 --service-topology-name contosoServiceTopology +""" + helps['deploymentmanager service update'] = """ type: command short-summary: Updates the service. @@ -167,6 +194,15 @@ az deploymentmanager service-topology show -g rg1 -n contosoServiceTopology """ +helps['deploymentmanager service-topology list'] = """ +type: command +short-summary: List all service topologies in a resource group. +examples: + - name: List all the service topologies in the resource group. + text: > + az deploymentmanager service-topology list -g rg1 +""" + helps['deploymentmanager service-topology update'] = """ type: command short-summary: Updates the service topology. @@ -217,6 +253,15 @@ az deploymentmanager service-unit show -g rg1 --service-topology-name contosoServiceTopology --service-name contosoService1 -n ContosoService1Storage """ +helps['deploymentmanager service-unit list'] = """ +type: command +short-summary: List all service units in a service. +examples: + - name: List the service units in the given service topology and service. + text: > + az deploymentmanager service-unit list -g rg1 --service-topology-name contosoServiceTopology --service-name contosoService1 +""" + helps['deploymentmanager service-unit update'] = """ type: command short-summary: Updates the service unit. @@ -239,9 +284,12 @@ type: command short-summary: Creates the step. examples: - - name: Creates a step. + - name: Creates a wait step. text: > az deploymentmanager step create -g rg1 -l location -n contosoServiceWaitStep --duration PT30M + - name: Creates a health check step from a JSON file. The step information is read from the file. + text: > + az deploymentmanager step create -g rg1 --step healthcheck_step.json """ helps['deploymentmanager step show'] = """ @@ -253,6 +301,15 @@ az deploymentmanager step show -g rg1 -n contosoServiceWaitStep """ +helps['deploymentmanager step list'] = """ +type: command +short-summary: List all steps in a resource group. +examples: + - name: List available steps in the given resource group. + text: > + az deploymentmanager step list -g rg1 +""" + helps['deploymentmanager step update'] = """ type: command short-summary: Updates the step. diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/_params.py b/src/azure-cli/azure/cli/command_modules/deploymentmanager/_params.py index 63520fec3e0..1cdd1421408 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/_params.py +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/_params.py @@ -119,24 +119,27 @@ def load_arguments(self, _): duration_type = CLIArgumentType(options_list='--duration', help='The duration of the wait step in ISO 8601 format.') step_name_type = CLIArgumentType(options_list=['--step-name', '--name', '-n'], help='The name of the step', completer=get_resource_name_completion_list('Microsoft.DeploymentManager/steps')) + step_type = CLIArgumentType(options_list='--step', help='The step object, specify either the path to a json file or provide a json string that forms the step resource. The json is expected to be of the same format as the output of the relevant `az deploymentmanager step show` command') with self.argument_context('deploymentmanager step') as c: c.argument('resource_group_name', resource_group_name_type) - c.argument('location', get_location_type(self.cli_ctx), required=True) + c.argument('location', get_location_type(self.cli_ctx)) c.argument('step_name', step_name_type) c.argument('duration', duration_type) c.argument('tags', tags_type) with self.argument_context('deploymentmanager step create') as c: c.argument('resource_group_name', resource_group_name_type) - c.argument('location', get_location_type(self.cli_ctx), required=True) + c.argument('location', get_location_type(self.cli_ctx)) c.argument('step_name', step_name_type) + c.argument('step', step_type) c.argument('duration', duration_type) c.argument('tags', tags_type) with self.argument_context('deploymentmanager step update') as c: c.argument('resource_group_name', resource_group_name_type) c.argument('step_name', step_name_type) + c.argument('step', step_type) c.argument('duration', duration_type) c.argument('tags', tags_type) diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/commands.py b/src/azure-cli/azure/cli/command_modules/deploymentmanager/commands.py index 775cd8b9e54..9d40ca33d5f 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/commands.py +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/commands.py @@ -41,6 +41,7 @@ def load_command_table(self, _): g.custom_command('create', 'cli_artifact_source_create') g.command('delete', 'delete', confirmation="There might be rollouts referencing the artifact source. Do you want to delete?") g.command('show', 'get') + g.command('list', 'list') g.generic_update_command( 'update', setter_arg_name='artifact_source_info', @@ -51,6 +52,7 @@ def load_command_table(self, _): g.custom_command('create', 'cli_service_topology_create') g.command('delete', 'delete') g.command('show', 'get') + g.command('list', 'list') g.generic_update_command( 'update', setter_arg_name='service_topology_info', @@ -61,6 +63,7 @@ def load_command_table(self, _): g.custom_command('create', 'cli_service_create') g.command('delete', 'delete') g.command('show', 'get') + g.command('list', 'list') g.generic_update_command( 'update', setter_arg_name='service_info', @@ -71,6 +74,7 @@ def load_command_table(self, _): g.custom_command('create', 'cli_service_unit_create') g.command('delete', 'delete') g.command('show', 'get') + g.command('list', 'list') g.generic_update_command( 'update', setter_arg_name='service_unit_info', @@ -81,6 +85,7 @@ def load_command_table(self, _): g.custom_command('create', 'cli_step_create') g.command('delete', 'delete') g.command('show', 'get') + g.command('list', 'list') g.generic_update_command( 'update', setter_arg_name='step_info', @@ -89,6 +94,7 @@ def load_command_table(self, _): with self.command_group('deploymentmanager rollout', rollouts) as g: g.command('show', 'get') + g.command('list', 'list') g.command('stop', 'cancel', confirmation="Do you want to cancel the rollout?") g.custom_command( 'restart', diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/custom.py b/src/azure-cli/azure/cli/command_modules/deploymentmanager/custom.py index 8bd1d9ca92d..390aeb57e76 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/custom.py +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/custom.py @@ -3,9 +3,13 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +import json +import os from knack.log import get_logger from knack.util import CLIError +from azure.cli.core.util import get_file_json, shell_safe_json_parse + from azure.cli.command_modules.deploymentmanager._client_factory import ( cf_artifact_sources, cf_service_topologies, @@ -271,39 +275,72 @@ def cli_service_unit_update( def cli_step_create( cmd, resource_group_name, - step_name, - duration, + step_name=None, + step=None, + duration=None, location=None, tags=None): - waitStepProperties = WaitStepProperties( - attributes=WaitStepAttributes(duration=duration)) + if step is None and duration is None: + raise CLIError('usage error: specify either step or duration. \ + If step is specified, it can either be a wait step or health check step.') - if location is None: - location = get_location_from_resource_group(cmd.cli_ctx, resource_group_name) - - step = StepResource( - properties=waitStepProperties, - location=location, - tags=tags) + if step is not None and duration is not None: + raise CLIError('usage error: specify only one of step or duration. \ + If step is specified, it can either be a wait step or health check step.') client = cf_steps(cmd.cli_ctx) + if step is not None: + step_resource = get_step_from_json(client, step) + step_name = step_resource.name + + elif duration is not None: + if step_name is None: + raise CLIError('usage error: step name is not specified.') + + waitStepProperties = WaitStepProperties(attributes=WaitStepAttributes(duration=duration)) + + if location is None: + if resource_group_name is not None: + location = get_location_from_resource_group(cmd.cli_ctx, resource_group_name) + + step_resource = StepResource( + properties=waitStepProperties, + location=location, + tags=tags) + return client.create_or_update( resource_group_name=resource_group_name, step_name=step_name, - step_info=step) + step_info=step_resource) def cli_step_update( cmd, instance, - duration, + step=None, + duration=None, tags=None): - instance.properties.attributes.duration = duration + if (step is None and duration is None): + raise CLIError('usage error: specify either step or duration. \ + If step is specified, it can either be a wait step or health check step.') - if tags is not None: - instance.tags = tags + if (step is not None and duration is not None): + raise CLIError('usage error: specify only one of step or duration. \ + If step is specified, it can either be a wait step or health check step.') + + if duration is not None: + instance.properties.attributes.duration = duration + + # only update tags if updating duration property. If updating step from a file, read everything from file. + if tags is not None: + instance.tags = tags + + elif step is not None: + client = cf_steps(cmd.cli_ctx) + step_resource = get_step_from_json(client, step) + instance = step_resource return instance @@ -327,3 +364,45 @@ def get_location_from_resource_group(cli_ctx, resource_group_name): client = get_mgmt_service_client(cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES) group = client.resource_groups.get(resource_group_name) return group.location + + +def get_step_from_json(client, health_check_step): + return get_object_from_json(client, health_check_step, 'StepResource') + + +def get_or_read_json(json_or_file): + json_obj = None + if is_json(json_or_file): + json_obj = shell_safe_json_parse(json_or_file) + elif os.path.exists(json_or_file): + json_obj = get_file_json(json_or_file) + if json_obj is None: + raise ValueError( + """ + The variable passed should be in valid JSON format and be supplied by az deploymentmanager step CLI command. + Make sure that you use output of relevant 'az deploymentmanager step show' command and the --out is 'json' + """) + return json_obj + + +def get_object_from_json(client, json_or_file, class_name): + # Determine if input is json or file + json_obj = get_or_read_json(json_or_file) + + # Deserialize json to object + param = client._deserialize(class_name, json_obj) # pylint: disable=protected-access + if param is None: + raise ValueError( + """ + The variable passed should be in valid JSON format and be supplied by az deploymentmanager step CLI command. + Make sure that you use output of relevant 'az deploymentmanager step show' commands and the --out is 'json' + """) + return param + + +def is_json(content): + try: + json.loads(content) + except ValueError: + return False + return True diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout.json b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout.json index be71bf44553..e5968dfdef1 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout.json +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout.json @@ -9,7 +9,7 @@ "Identity": { "type": "userAssigned", "identityIds": [ - "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cliadmxy32gy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadmxy32gyIdentity" + "__USER_ASSIGNED_IDENTITY__" ] }, "properties": { diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout_failurerollout.json b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout_failurerollout.json index a3c3e311d82..ad246fa8412 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout_failurerollout.json +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/createrollout_failurerollout.json @@ -9,7 +9,7 @@ "Identity": { "type": "userAssigned", "identityIds": [ - "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/cliadmxy32gy/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadmxy32gyIdentity" + "__USER_ASSIGNED_IDENTITY__" ] }, "properties": { diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/healthcheck_step.json b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/healthcheck_step.json new file mode 100644 index 00000000000..18a43d22ea0 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/healthcheck_step.json @@ -0,0 +1,56 @@ +{ + "name": "__HEALTH_CHECK_STEP_NAME__", + "location": "centralus", + "properties": { + "stepType": "HealthCheck", + "attributes": { + "healthChecks": [ + { + "name": "RestHealthQuery1", + "request": { + "authentication": { + "in": "Query", + "name": "Code", + "type": "ApiKey", + "value": "AuthValue==" + }, + "method": "Get", + "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus" + }, + "response": { + "regex": { + "matchQuantifier": "All", + "matches": ["resthc1", "healthy"] + }, + "successStatusCodes": ["OK"] + } + }, + { + "name": "RestHealthQuery2", + "request": { + "authentication": { + "in": "Header", + "name": "x-functions-key", + "type": "ApiKey", + "value": "AuthValue==" + }, + "method": "Get", + "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus" + }, + "response": { + "regex": { + "matchQuantifier": "All", + "matches": ["resthc1", "healthy"] + }, + "successStatusCodes": ["OK"] + } + } + ], + "healthyStateDuration": "PT60M", + "maxElasticDuration": "PT20M", + "waitDuration": "PT10M", + "type": "REST" + } + }, + "tags": null +} diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/recordings/test_deploymentmanager_scenario.yaml b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/recordings/test_deploymentmanager_scenario.yaml index f6b1565c7c4..46043668e2b 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/recordings/test_deploymentmanager_scenario.yaml +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/recordings/test_deploymentmanager_scenario.yaml @@ -1,207 +1,4 @@ interactions: -- request: - body: '{"location": "centralus", "tags": {"product": "azurecli", "cause": "automation", - "date": "2019-04-16T21:29:09Z"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - group create - Connection: - - keep-alive - Content-Length: - - '113' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - --location --name --tag - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001?api-version=2019-07-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001","name":"cliadm000001","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:29:09Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '261' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:29:14 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: '{"sku": {"name": "Standard_LRS"}, "kind": "Storage", "location": "centralus"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - Content-Length: - - '77' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002?api-version=2019-04-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - content-type: - - text/plain; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:29:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/dd6a65ee-883a-469b-929c-47397518f87b?monitor=true&api-version=2018-07-01 - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 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: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/centralus/asyncoperations/dd6a65ee-883a-469b-929c-47397518f87b?monitor=true&api-version=2018-07-01 - response: - body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002","name":"cliadm000002","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-16T21:29:16.9251020Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-16T21:29:16.9251020Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-16T21:29:16.8001209Z","primaryEndpoints":{"blob":"https://cliadm000002.blob.core.windows.net/","queue":"https://cliadm000002.queue.core.windows.net/","table":"https://cliadm000002.table.core.windows.net/","file":"https://cliadm000002.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}}' - headers: - cache-control: - - no-cache - content-length: - - '1112' - content-type: - - application/json - date: - - Tue, 16 Apr 2019 21:29:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,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 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - storage account keys list - Connection: - - keep-alive - Content-Length: - - '0' - ParameterSetName: - - -n -g --query -o - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002/listKeys?api-version=2019-04-01 - response: - body: - string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' - headers: - cache-control: - - no-cache - content-length: - - '288' - content-type: - - application/json - date: - - Tue, 16 Apr 2019 21:29:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK - request: body: null headers: @@ -216,24 +13,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001","name":"cliadm000001","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2019-04-16T21:29:09Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001","name":"cliadm000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2020-01-15T00:10:10Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '261' + - '305' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:36 GMT + - Wed, 15 Jan 2020 00:10:37 GMT expires: - '-1' pragma: @@ -265,15 +62,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-msi/0.2.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity","name":"cliadm000001Identity","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"centralus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"312892ea-5175-4f07-8dfa-d89e99d5677d","clientId":"e8905141-de01-4b37-a10c-f4dc1e685b44","clientSecretUrl":"https://control-centralus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=312892ea-5175-4f07-8dfa-d89e99d5677d&aid=e8905141-de01-4b37-a10c-f4dc1e685b44"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity","name":"cliadm000001Identity","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"centralus","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"08d1a263-aa70-44a5-83cf-474854e125bc","clientId":"11a36ab1-3ac4-44fd-bef4-037358385255","clientSecretUrl":"https://control-centralus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity/credentials?tid=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=08d1a263-aa70-44a5-83cf-474854e125bc&aid=11a36ab1-3ac4-44fd-bef4-037358385255"}}' headers: cache-control: - no-cache @@ -282,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:29:39 GMT + - Wed, 15 Jan 2020 00:10:41 GMT expires: - '-1' location: @@ -311,13 +108,11 @@ interactions: - role assignment create Connection: - keep-alive - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-authorization/0.50.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET @@ -334,13 +129,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:39 GMT + - Wed, 15 Jan 2020 00:12:42 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; SameSite=None; secure; HttpOnly strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -368,12 +163,12 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27312892ea-5175-4f07-8dfa-d89e99d5677d%27%29&api-version=1.6 + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2708d1a263-aa70-44a5-83cf-474854e125bc%27%29&api-version=1.6 response: body: string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}' @@ -389,19 +184,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 21:31:40 GMT + - Wed, 15 Jan 2020 00:12:45 GMT duration: - - '1094094' + - '1382373' expires: - '-1' ocp-aad-diagnostics-server-name: - - hjR4RY9nRvxALTOJY4KnXfIpjm/qwj5JntibyjsUFsE= + - +AdaoIDG5Jx3eMgj68JEUOBsdUx2CoMNzREPKIx3Gac= ocp-aad-session-key: - - ZPyw3HsyT5lGviF8hnAc5AR6RKdxIu4yERg6lNf3_nk0GjWLhCRqt820QmU08k_xGgv1sQzmXZQa3ZPY8amdwsespsoBCSGDuQlS13tVAa_Bmv_C8jxmFOj9QnaMKVKC.N5COlEBJQPaqe88A2zWNKiCWSNjiUfitmzoshq14aLA + - D5vh2E3x6ZRaNvYCCb55Hz0kNs-h-VgCRPBilGDFTCYzW_rUpvfFJmgJtrPp8nZykCkyQ8_5N_PevtyUQe9ODigScXn4oiXApzffZOeSpJkVS3jHrBPqKjjx2AEqLjWn.YxgnubOZU6jcgkWAtM_pp1xtrg9wgQXIpYGxhADtPxY pragma: - no-cache request-id: - - 424f6790-12f1-4a59-a2c1-be621e6a3d4a + - d4a97a50-2bce-4e34-acf6-d6cb1d281bd7 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -414,7 +209,7 @@ interactions: code: 200 message: OK - request: - body: '{"objectIds": ["312892ea-5175-4f07-8dfa-d89e99d5677d"], "includeDirectoryObjectReferences": + body: '{"objectIds": ["08d1a263-aa70-44a5-83cf-474854e125bc"], "includeDirectoryObjectReferences": true}' headers: Accept: @@ -432,15 +227,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-graphrbac/0.60.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: POST uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6 response: body: - string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"312892ea-5175-4f07-8dfa-d89e99d5677d","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"],"appDisplayName":null,"appId":"e8905141-de01-4b37-a10c-f4dc1e685b44","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cliadm000001Identity","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"90A52232C216B54C8D7C5E9035B4215D898B19E1","endDate":"2019-07-15T21:24:00Z","keyId":"8c4b697b-9680-48e9-990d-629450007d0e","startDate":"2019-04-16T21:24:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["e8905141-de01-4b37-a10c-f4dc1e685b44","https://identity.azure.net/z5fYxbvcBdFcfuQcc0fuvmujy4nv/g95eVnhiECD2NQ="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"08d1a263-aa70-44a5-83cf-474854e125bc","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"],"appDisplayName":null,"appId":"11a36ab1-3ac4-44fd-bef4-037358385255","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"cliadm000001Identity","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"16CF4C3EADF3D63DE39AAA6C875D0881E9B58B17","endDate":"2020-04-14T00:05:00Z","keyId":"b54c2ff8-058b-44df-85b7-cd895d7cdd1d","startDate":"2020-01-15T00:05:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["11a36ab1-3ac4-44fd-bef4-037358385255","https://identity.azure.net/A/FVi29Lh7vPOGuIE8tApuhPZ0d/fHSAQHBcUDX596c="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}' headers: access-control-allow-origin: - '*' @@ -453,19 +248,19 @@ interactions: dataserviceversion: - 3.0; date: - - Tue, 16 Apr 2019 21:31:41 GMT + - Wed, 15 Jan 2020 00:12:45 GMT duration: - - '923446' + - '667867' expires: - '-1' ocp-aad-diagnostics-server-name: - - zZhyt14zl0OhjZk/+0wTMqtIww9oR8AMqmXQ2MnPyJw= + - xvWJHMWAHzosjXNMZ9eWLFLy/hDOFxHPaxgG2NiJKnA= ocp-aad-session-key: - - QAU19Eq534RFWn0BeBMqtvZ-hq8q2kFF9D6h4Eq_BPI8IYhhpUENmpZgSkwPskjOxQ7-98wWXrpz0TQ9yKDv-TOAmm8VIHYDrSNvmNnn12G9DygFQbC-aOvjMGDftPZe.aw8l3G1p7hIxhvzlY8JmHttUyfu-tzSIBDg_RANoc_Y + - fcusv0YBpQFvN7K08gj3I6Ul_-wTp6Es7LUmzaumUbMCzo0FqQNwSJu2gDM3VCqJnsmDLD3vl5htODWpJovApiX-0MZKYMQPuBLRaHErMGaeDYICJxNY8Om4A3v1uCLb.jAtARSPLzniyO2dwGIe0tLp8pzBzs_OEQK4ByO2ygqk pragma: - no-cache request-id: - - fc695a27-7755-4d4f-8df8-dfd18d5f3455 + - 78c47028-2b13-4c91-94ed-8db10da1c4ce strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -479,7 +274,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c", - "principalId": "312892ea-5175-4f07-8dfa-d89e99d5677d"}}' + "principalId": "08d1a263-aa70-44a5-83cf-474854e125bc"}}' headers: Accept: - application/json @@ -498,15 +293,15 @@ interactions: ParameterSetName: - --assignee --role --scope User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-authorization/0.50.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-authorization/0.52.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05410bba-cf24-4d20-bbee-d5b344db5c76?api-version=2018-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ecaa501c-3928-4a84-b7c2-3cfcd814b816?api-version=2018-09-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"312892ea-5175-4f07-8dfa-d89e99d5677d","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2019-04-16T21:31:42.1579261Z","updatedOn":"2019-04-16T21:31:42.1579261Z","createdBy":null,"updatedBy":"499f1d6b-6fce-4af1-b9fe-997fe403df7b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/05410bba-cf24-4d20-bbee-d5b344db5c76","type":"Microsoft.Authorization/roleAssignments","name":"05410bba-cf24-4d20-bbee-d5b344db5c76"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"08d1a263-aa70-44a5-83cf-474854e125bc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000","createdOn":"2020-01-15T00:12:46.5127843Z","updatedOn":"2020-01-15T00:12:46.5127843Z","createdBy":null,"updatedBy":"499f1d6b-6fce-4af1-b9fe-997fe403df7b"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleAssignments/ecaa501c-3928-4a84-b7c2-3cfcd814b816","type":"Microsoft.Authorization/roleAssignments","name":"ecaa501c-3928-4a84-b7c2-3cfcd814b816"}' headers: cache-control: - no-cache @@ -515,13 +310,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:31:44 GMT + - Wed, 15 Jan 2020 00:12:48 GMT expires: - '-1' pragma: - no-cache set-cookie: - - x-ms-gateway-slice=Production; path=/; secure; HttpOnly + - x-ms-gateway-slice=Production; path=/; secure; HttpOnly; SameSite=None strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -529,7 +324,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: - - '3' + - '2' status: code: 201 message: Created @@ -549,12 +344,12 @@ interactions: ParameterSetName: - -n -g --query -o User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002/listKeys?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -566,7 +361,7 @@ interactions: content-type: - application/json date: - - Tue, 16 Apr 2019 21:32:15 GMT + - Wed, 15 Jan 2020 00:13:18 GMT expires: - '-1' pragma: @@ -594,11 +389,11 @@ interactions: Content-Length: - '0' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.62 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.80 x-ms-date: - - Tue, 16 Apr 2019 21:32:15 GMT + - Wed, 15 Jan 2020 00:13:19 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT uri: https://cliadm000002.blob.core.windows.net/artifacts?restype=container response: @@ -608,42 +403,42 @@ interactions: content-length: - '0' date: - - Tue, 16 Apr 2019 21:32:16 GMT + - Wed, 15 Jan 2020 00:13:19 GMT etag: - - '"0x8D6C2B2FF471349"' + - '"0x8D7994FBA64BC55"' last-modified: - - Tue, 16 Apr 2019 21:32:16 GMT + - Wed, 15 Jan 2020 00:13:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created - request: - body: 'b''{\r\n "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",\r\n "contentVersion": - "1.0.0.0",\r\n "parameters": {\r\n "location": {\r\n "value": - "centralus"\r\n },\r\n "storageAccountName": {\r\n "value": - "cliadm000001stgtemplate"\r\n },\r\n "accountType": {\r\n "value": - "Standard_RAGRS"\r\n },\r\n "kind": {\r\n "value": - "StorageV2"\r\n },\r\n "accessTier": {\r\n "value": - "Hot"\r\n },\r\n "supportsHttpsTrafficOnly": {\r\n "value": - true\r\n }\r\n }\r\n}''' + body: "{\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": + {\r\n \"value\": \"centralus\"\r\n },\r\n \"storageAccountName\": + {\r\n \"value\": \"cliadmxy32gystgtemplate\"\r\n },\r\n \"accountType\": + {\r\n \"value\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": + {\r\n \"value\": \"StorageV2\"\r\n },\r\n \"accessTier\": + {\r\n \"value\": \"Hot\"\r\n },\r\n \"supportsHttpsTrafficOnly\": + {\r\n \"value\": true\r\n }\r\n }\r\n}" headers: Connection: - keep-alive Content-Length: - '613' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.62 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.80 x-ms-blob-content-type: - application/json x-ms-blob-type: - BlockBlob x-ms-date: - - Tue, 16 Apr 2019 21:32:16 GMT + - Wed, 15 Jan 2020 00:13:20 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT uri: https://cliadm000002.blob.core.windows.net/artifacts/artifactroot/storage.parameters.json response: @@ -653,46 +448,46 @@ interactions: content-length: - '0' content-md5: - - LWf2MnTpa2oUw5zmofZBVg== + - ne6IERAxIhvMrqRELGmC1A== date: - - Tue, 16 Apr 2019 21:32:16 GMT + - Wed, 15 Jan 2020 00:13:20 GMT etag: - - '"0x8D6C2B2FF9F8FD9"' + - '"0x8D7994FBAAB0E3D"' last-modified: - - Tue, 16 Apr 2019 21:32:16 GMT + - Wed, 15 Jan 2020 00:13:20 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: - 'true' x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created - request: - body: 'b''\xef\xbb\xbf{\r\n "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#",\r\n "contentVersion": - "1.0.0.0",\r\n "parameters": {\r\n "location": {\r\n "value": - "centralus"\r\n },\r\n "storageAccountName": {\r\n "value": - "cliadm000001stgtemplate"\r\n },\r\n "accountType": {\r\n "value": - "Standard_RAGRS"\r\n },\r\n "kind": {\r\n "value": - "StorageV2"\r\n },\r\n "accessTier": {\r\n "value": - "Hot"\r\n },\r\n "supportsHttpsTrafficOnly": {\r\n "value": - true\r\n }\r\n }\r\n}\r\n''' + body: "\uFEFF{\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#\",\r\n + \ \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": + {\r\n \"value\": \"centralus\"\r\n },\r\n \"storageAccountName\": + {\r\n \"value\": \"cliadmxy32gystgtemplate\"\r\n },\r\n \"accountType\": + {\r\n \"value\": \"Standard_RAGRS\"\r\n },\r\n \"kind\": + {\r\n \"value\": \"StorageV2\"\r\n },\r\n \"accessTier\": + {\r\n \"value\": \"Hot\"\r\n },\r\n \"supportsHttpsTrafficOnly\": + {\r\n \"value\": true\r\n }\r\n }\r\n}\r\n" headers: Connection: - keep-alive Content-Length: - '618' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.62 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.80 x-ms-blob-content-type: - application/json x-ms-blob-type: - BlockBlob x-ms-date: - - Tue, 16 Apr 2019 21:32:17 GMT + - Wed, 15 Jan 2020 00:13:21 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT uri: https://cliadm000002.blob.core.windows.net/artifacts/artifactroot/storage.copy.parameters.json response: @@ -702,19 +497,19 @@ interactions: content-length: - '0' content-md5: - - 67R+T2biSty1aib9Cs4EmQ== + - kKXGK5330ursPOIjwfFX9A== date: - - Tue, 16 Apr 2019 21:32:17 GMT + - Wed, 15 Jan 2020 00:13:21 GMT etag: - - '"0x8D6C2B2FFE754E1"' + - '"0x8D7994FBAEE16F7"' last-modified: - - Tue, 16 Apr 2019 21:32:17 GMT + - Wed, 15 Jan 2020 00:13:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: - 'true' x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created @@ -742,15 +537,15 @@ interactions: Content-Length: - '1242' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.62 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.80 x-ms-blob-content-type: - application/json x-ms-blob-type: - BlockBlob x-ms-date: - - Tue, 16 Apr 2019 21:32:17 GMT + - Wed, 15 Jan 2020 00:13:21 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT uri: https://cliadm000002.blob.core.windows.net/artifacts/artifactroot/storage.template.json response: @@ -762,17 +557,17 @@ interactions: content-md5: - /SSTMoFKkG8ZQg+1oXFMBQ== date: - - Tue, 16 Apr 2019 21:32:17 GMT + - Wed, 15 Jan 2020 00:13:21 GMT etag: - - '"0x8D6C2B3002ECB9E"' + - '"0x8D7994FBB286B8A"' last-modified: - - Tue, 16 Apr 2019 21:32:17 GMT + - Wed, 15 Jan 2020 00:13:21 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: - 'true' x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created @@ -800,15 +595,15 @@ interactions: Content-Length: - '1242' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.62 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.80 x-ms-blob-content-type: - application/json x-ms-blob-type: - BlockBlob x-ms-date: - - Tue, 16 Apr 2019 21:32:18 GMT + - Wed, 15 Jan 2020 00:13:22 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT uri: https://cliadm000002.blob.core.windows.net/artifacts/artifactroot/storage.copy.template.json response: @@ -820,17 +615,17 @@ interactions: content-md5: - /SSTMoFKkG8ZQg+1oXFMBQ== date: - - Tue, 16 Apr 2019 21:32:17 GMT + - Wed, 15 Jan 2020 00:13:21 GMT etag: - - '"0x8D6C2B3007BC1A2"' + - '"0x8D7994FBB6FBAD1"' last-modified: - - Tue, 16 Apr 2019 21:32:18 GMT + - Wed, 15 Jan 2020 00:13:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: - 'true' x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created @@ -850,15 +645,15 @@ interactions: Content-Length: - '620' User-Agent: - - Azure-Storage/1.3.0-1.3.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.62 + - Azure-Storage/2.0.0-2.0.1 (Python CPython 3.7.3; Windows 10) AZURECLI/2.0.80 x-ms-blob-content-type: - application/json x-ms-blob-type: - BlockBlob x-ms-date: - - Tue, 16 Apr 2019 21:32:18 GMT + - Wed, 15 Jan 2020 00:13:22 GMT x-ms-version: - - '2018-03-28' + - '2018-11-09' method: PUT uri: https://cliadm000002.blob.core.windows.net/artifacts/artifactroot/storage_invalid.parameters.json response: @@ -870,17 +665,17 @@ interactions: content-md5: - 9bTPRFFO473q3qv5fvgUOA== date: - - Tue, 16 Apr 2019 21:32:18 GMT + - Wed, 15 Jan 2020 00:13:21 GMT etag: - - '"0x8D6C2B300C42303"' + - '"0x8D7994FBBB338D3"' last-modified: - - Tue, 16 Apr 2019 21:32:18 GMT + - Wed, 15 Jan 2020 00:13:22 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-request-server-encrypted: - 'true' x-ms-version: - - '2018-03-28' + - '2018-11-09' status: code: 201 message: Created @@ -898,24 +693,26 @@ interactions: ParameterSetName: - -n --account-name --permissions --start --expiry -o User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mandardev/providers/Microsoft.Storage/storageAccounts/akvtest","name":"akvtest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-19T23:25:44.3527853Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-19T23:25:44.3527853Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-19T23:25:44.2433775Z","primaryEndpoints":{"blob":"https://akvtest.blob.core.windows.net/","queue":"https://akvtest.queue.core.windows.net/","table":"https://akvtest.table.core.windows.net/","file":"https://akvtest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceEUSrg/providers/Microsoft.Storage/storageAccounts/odgl6zpjcwo5g","name":"odgl6zpjcwo5g","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:07:59.7976368Z","primaryEndpoints":{"blob":"https://odgl6zpjcwo5g.blob.core.windows.net/","queue":"https://odgl6zpjcwo5g.queue.core.windows.net/","table":"https://odgl6zpjcwo5g.table.core.windows.net/","file":"https://odgl6zpjcwo5g.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimServiceEUSrg/providers/Microsoft.Storage/storageAccounts/c4lxce52hz7dy","name":"c4lxce52hz7dy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:53.9013528Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:53.9013528Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-26T02:18:53.8076547Z","primaryEndpoints":{"blob":"https://c4lxce52hz7dy.blob.core.windows.net/","queue":"https://c4lxce52hz7dy.queue.core.windows.net/","table":"https://c4lxce52hz7dy.table.core.windows.net/","file":"https://c4lxce52hz7dy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-synthetics-prod/providers/Microsoft.Storage/storageAccounts/admsyntheticsproddiag","name":"admsyntheticsproddiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-10T17:49:10.7539587Z","primaryEndpoints":{"blob":"https://admsyntheticsproddiag.blob.core.windows.net/","queue":"https://admsyntheticsproddiag.queue.core.windows.net/","table":"https://admsyntheticsproddiag.table.core.windows.net/","file":"https://admsyntheticsproddiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus21","name":"admcieus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:15.1754902Z","primaryEndpoints":{"dfs":"https://admcieus21.dfs.core.windows.net/","web":"https://admcieus21.z20.web.core.windows.net/","blob":"https://admcieus21.blob.core.windows.net/","queue":"https://admcieus21.queue.core.windows.net/","table":"https://admcieus21.table.core.windows.net/","file":"https://admcieus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus21-secondary.dfs.core.windows.net/","web":"https://admcieus21-secondary.z20.web.core.windows.net/","blob":"https://admcieus21-secondary.blob.core.windows.net/","queue":"https://admcieus21-secondary.queue.core.windows.net/","table":"https://admcieus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregeus21","name":"admciregeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:22:25.1351453Z","primaryEndpoints":{"dfs":"https://admciregeus21.dfs.core.windows.net/","web":"https://admciregeus21.z20.web.core.windows.net/","blob":"https://admciregeus21.blob.core.windows.net/","queue":"https://admciregeus21.queue.core.windows.net/","table":"https://admciregeus21.table.core.windows.net/","file":"https://admciregeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregeus21-secondary.dfs.core.windows.net/","web":"https://admciregeus21-secondary.z20.web.core.windows.net/","blob":"https://admciregeus21-secondary.blob.core.windows.net/","queue":"https://admciregeus21-secondary.queue.core.windows.net/","table":"https://admciregeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus22","name":"admppeeus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:24.2368190Z","primaryEndpoints":{"dfs":"https://admppeeus22.dfs.core.windows.net/","web":"https://admppeeus22.z20.web.core.windows.net/","blob":"https://admppeeus22.blob.core.windows.net/","queue":"https://admppeeus22.queue.core.windows.net/","table":"https://admppeeus22.table.core.windows.net/","file":"https://admppeeus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus22-secondary.dfs.core.windows.net/","web":"https://admppeeus22-secondary.z20.web.core.windows.net/","blob":"https://admppeeus22-secondary.blob.core.windows.net/","queue":"https://admppeeus22-secondary.queue.core.windows.net/","table":"https://admppeeus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus21","name":"admppeeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:01.1138624Z","primaryEndpoints":{"dfs":"https://admppeeus21.dfs.core.windows.net/","web":"https://admppeeus21.z20.web.core.windows.net/","blob":"https://admppeeus21.blob.core.windows.net/","queue":"https://admppeeus21.queue.core.windows.net/","table":"https://admppeeus21.table.core.windows.net/","file":"https://admppeeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus21-secondary.dfs.core.windows.net/","web":"https://admppeeus21-secondary.z20.web.core.windows.net/","blob":"https://admppeeus21-secondary.blob.core.windows.net/","queue":"https://admppeeus21-secondary.queue.core.windows.net/","table":"https://admppeeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.Storage/storageAccounts/ev2teststoragevivardm2","name":"ev2teststoragevivardm2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-08T19:51:16.9477840Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-08T19:51:16.9477840Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-03-08T19:51:16.8071432Z","primaryEndpoints":{"dfs":"https://ev2teststoragevivardm2.dfs.core.windows.net/","web":"https://ev2teststoragevivardm2.z20.web.core.windows.net/","blob":"https://ev2teststoragevivardm2.blob.core.windows.net/","queue":"https://ev2teststoragevivardm2.queue.core.windows.net/","table":"https://ev2teststoragevivardm2.table.core.windows.net/","file":"https://ev2teststoragevivardm2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ev2teststoragevivardm2-secondary.dfs.core.windows.net/","web":"https://ev2teststoragevivardm2-secondary.z20.web.core.windows.net/","blob":"https://ev2teststoragevivardm2-secondary.blob.core.windows.net/","queue":"https://ev2teststoragevivardm2-secondary.queue.core.windows.net/","table":"https://ev2teststoragevivardm2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegeus21","name":"admpperegeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:04:52.4281644Z","primaryEndpoints":{"dfs":"https://admpperegeus21.dfs.core.windows.net/","web":"https://admpperegeus21.z20.web.core.windows.net/","blob":"https://admpperegeus21.blob.core.windows.net/","queue":"https://admpperegeus21.queue.core.windows.net/","table":"https://admpperegeus21.table.core.windows.net/","file":"https://admpperegeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegeus21-secondary.dfs.core.windows.net/","web":"https://admpperegeus21-secondary.z20.web.core.windows.net/","blob":"https://admpperegeus21-secondary.blob.core.windows.net/","queue":"https://admpperegeus21-secondary.queue.core.windows.net/","table":"https://admpperegeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus22","name":"admcieus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:59.5640997Z","primaryEndpoints":{"dfs":"https://admcieus22.dfs.core.windows.net/","web":"https://admcieus22.z20.web.core.windows.net/","blob":"https://admcieus22.blob.core.windows.net/","queue":"https://admcieus22.queue.core.windows.net/","table":"https://admcieus22.table.core.windows.net/","file":"https://admcieus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus22-secondary.dfs.core.windows.net/","web":"https://admcieus22-secondary.z20.web.core.windows.net/","blob":"https://admcieus22-secondary.blob.core.windows.net/","queue":"https://admcieus22-secondary.queue.core.windows.net/","table":"https://admcieus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs453012dcb5039x4e96x8e6","name":"cs453012dcb5039x4e96x8e6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-12T18:58:59.8070555Z","primaryEndpoints":{"blob":"https://cs453012dcb5039x4e96x8e6.blob.core.windows.net/","queue":"https://cs453012dcb5039x4e96x8e6.queue.core.windows.net/","table":"https://cs453012dcb5039x4e96x8e6.table.core.windows.net/","file":"https://cs453012dcb5039x4e96x8e6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sampletestresourcegroup/providers/Microsoft.Storage/storageAccounts/g3uktb4im6td2functions","name":"g3uktb4im6td2functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-01T02:01:53.9239903Z","primaryEndpoints":{"blob":"https://g3uktb4im6td2functions.blob.core.windows.net/","queue":"https://g3uktb4im6td2functions.queue.core.windows.net/","table":"https://g3uktb4im6td2functions.table.core.windows.net/","file":"https://g3uktb4im6td2functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.Service/providers/Microsoft.Storage/storageAccounts/admrestartftstgacct","name":"admrestartftstgacct","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-24T01:29:31.9629396Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-24T01:29:31.9629396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-24T01:29:31.8651666Z","primaryEndpoints":{"blob":"https://admrestartftstgacct.blob.core.windows.net/","queue":"https://admrestartftstgacct.queue.core.windows.net/","table":"https://admrestartftstgacct.table.core.windows.net/","file":"https://admrestartftstgacct.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dtServiceWUSrg/providers/Microsoft.Storage/storageAccounts/sr7j4orkujak6","name":"sr7j4orkujak6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-15T21:48:56.6949513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-15T21:48:56.6949513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-15T21:48:56.5074507Z","primaryEndpoints":{"blob":"https://sr7j4orkujak6.blob.core.windows.net/","queue":"https://sr7j4orkujak6.queue.core.windows.net/","table":"https://sr7j4orkujak6.table.core.windows.net/","file":"https://sr7j4orkujak6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceWUSrg/providers/Microsoft.Storage/storageAccounts/in7tlbyhwo3ss","name":"in7tlbyhwo3ss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:08:04.3489449Z","primaryEndpoints":{"blob":"https://in7tlbyhwo3ss.blob.core.windows.net/","queue":"https://in7tlbyhwo3ss.queue.core.windows.net/","table":"https://in7tlbyhwo3ss.table.core.windows.net/","file":"https://in7tlbyhwo3ss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupwus001/providers/Microsoft.Storage/storageAccounts/zxagicpuacs2ksawinvm","name":"zxagicpuacs2ksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:43:09.3042958Z","primaryEndpoints":{"blob":"https://zxagicpuacs2ksawinvm.blob.core.windows.net/","queue":"https://zxagicpuacs2ksawinvm.queue.core.windows.net/","table":"https://zxagicpuacs2ksawinvm.table.core.windows.net/","file":"https://zxagicpuacs2ksawinvm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/syntheticstests/providers/Microsoft.Storage/storageAccounts/syntheticstest","name":"syntheticstest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-14T00:28:41.8187324Z","primaryEndpoints":{"blob":"https://syntheticstest.blob.core.windows.net/","queue":"https://syntheticstest.queue.core.windows.net/","table":"https://syntheticstest.table.core.windows.net/","file":"https://syntheticstest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FunctionalTestWUS/providers/Microsoft.Storage/storageAccounts/nestedev2storage","name":"nestedev2storage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-17T21:31:20.5471773Z","primaryEndpoints":{"blob":"https://nestedev2storage.blob.core.windows.net/","queue":"https://nestedev2storage.queue.core.windows.net/","table":"https://nestedev2storage.table.core.windows.net/","file":"https://nestedev2storage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppewus1","name":"admppewus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:47.5598191Z","primaryEndpoints":{"dfs":"https://admppewus1.dfs.core.windows.net/","web":"https://admppewus1.z22.web.core.windows.net/","blob":"https://admppewus1.blob.core.windows.net/","queue":"https://admppewus1.queue.core.windows.net/","table":"https://admppewus1.table.core.windows.net/","file":"https://admppewus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppewus1-secondary.dfs.core.windows.net/","web":"https://admppewus1-secondary.z22.web.core.windows.net/","blob":"https://admppewus1-secondary.blob.core.windows.net/","queue":"https://admppewus1-secondary.queue.core.windows.net/","table":"https://admppewus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimServiceWUSrg/providers/Microsoft.Storage/storageAccounts/zdydbpivpbgai","name":"zdydbpivpbgai","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-26T02:18:58.2404928Z","primaryEndpoints":{"blob":"https://zdydbpivpbgai.blob.core.windows.net/","queue":"https://zdydbpivpbgai.queue.core.windows.net/","table":"https://zdydbpivpbgai.table.core.windows.net/","file":"https://zdydbpivpbgai.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciwus1","name":"admciwus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:20:36.8362556Z","primaryEndpoints":{"dfs":"https://admciwus1.dfs.core.windows.net/","web":"https://admciwus1.z22.web.core.windows.net/","blob":"https://admciwus1.blob.core.windows.net/","queue":"https://admciwus1.queue.core.windows.net/","table":"https://admciwus1.table.core.windows.net/","file":"https://admciwus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciwus1-secondary.dfs.core.windows.net/","web":"https://admciwus1-secondary.z22.web.core.windows.net/","blob":"https://admciwus1-secondary.blob.core.windows.net/","queue":"https://admciwus1-secondary.queue.core.windows.net/","table":"https://admciwus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctionsef89fd26","name":"azurefunctionsef89fd26","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T00:41:49.5340063Z","primaryEndpoints":{"blob":"https://azurefunctionsef89fd26.blob.core.windows.net/","queue":"https://azurefunctionsef89fd26.queue.core.windows.net/","table":"https://azurefunctionsef89fd26.table.core.windows.net/","file":"https://azurefunctionsef89fd26.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IrisYueqiTanExpressV2-2/providers/Microsoft.Storage/storageAccounts/xrypq37bo4po4functions","name":"xrypq37bo4po4functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-09T00:14:17.6365897Z","primaryEndpoints":{"blob":"https://xrypq37bo4po4functions.blob.core.windows.net/","queue":"https://xrypq37bo4po4functions.queue.core.windows.net/","table":"https://xrypq37bo4po4functions.table.core.windows.net/","file":"https://xrypq37bo4po4functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-sdk-tests/providers/Microsoft.Storage/storageAccounts/sdktests","name":"sdktests","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-25T21:51:56.4144314Z","primaryEndpoints":{"dfs":"https://sdktests.dfs.core.windows.net/","web":"https://sdktests.z22.web.core.windows.net/","blob":"https://sdktests.blob.core.windows.net/","queue":"https://sdktests.queue.core.windows.net/","table":"https://sdktests.table.core.windows.net/","file":"https://sdktests.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sdktests-secondary.dfs.core.windows.net/","web":"https://sdktests-secondary.z22.web.core.windows.net/","blob":"https://sdktests-secondary.blob.core.windows.net/","queue":"https://sdktests-secondary.queue.core.windows.net/","table":"https://sdktests-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupweu002/providers/Microsoft.Storage/storageAccounts/h2he2t3nvdnjksawinvm","name":"h2he2t3nvdnjksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:54:35.2244069Z","primaryEndpoints":{"blob":"https://h2he2t3nvdnjksawinvm.blob.core.windows.net/","queue":"https://h2he2t3nvdnjksawinvm.queue.core.windows.net/","table":"https://h2he2t3nvdnjksawinvm.table.core.windows.net/","file":"https://h2he2t3nvdnjksawinvm.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus2","name":"admcicus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:42.3250263Z","primaryEndpoints":{"dfs":"https://admcicus2.dfs.core.windows.net/","web":"https://admcicus2.z19.web.core.windows.net/","blob":"https://admcicus2.blob.core.windows.net/","queue":"https://admcicus2.queue.core.windows.net/","table":"https://admcicus2.table.core.windows.net/","file":"https://admcicus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus2-secondary.dfs.core.windows.net/","web":"https://admcicus2-secondary.z19.web.core.windows.net/","blob":"https://admcicus2-secondary.blob.core.windows.net/","queue":"https://admcicus2-secondary.queue.core.windows.net/","table":"https://admcicus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm898591314xt","name":"gsm898591314xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.4349606Z","primaryEndpoints":{"blob":"https://gsm898591314xt.blob.core.windows.net/","queue":"https://gsm898591314xt.queue.core.windows.net/","table":"https://gsm898591314xt.table.core.windows.net/","file":"https://gsm898591314xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus2","name":"admppecus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:01:28.3032730Z","primaryEndpoints":{"dfs":"https://admppecus2.dfs.core.windows.net/","web":"https://admppecus2.z19.web.core.windows.net/","blob":"https://admppecus2.blob.core.windows.net/","queue":"https://admppecus2.queue.core.windows.net/","table":"https://admppecus2.table.core.windows.net/","file":"https://admppecus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus2-secondary.dfs.core.windows.net/","web":"https://admppecus2-secondary.z19.web.core.windows.net/","blob":"https://admppecus2-secondary.blob.core.windows.net/","queue":"https://admppecus2-secondary.queue.core.windows.net/","table":"https://admppecus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm212609152xt","name":"gsm212609152xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycidiagusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycidiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:39.3494589Z","primaryEndpoints":{"blob":"https://gsm212609152xt.blob.core.windows.net/","queue":"https://gsm212609152xt.queue.core.windows.net/","table":"https://gsm212609152xt.table.core.windows.net/","file":"https://gsm212609152xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-web-centralus/providers/Microsoft.Storage/storageAccounts/n5hoj66ysgio4functions","name":"n5hoj66ysgio4functions","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-16T20:58:45.5315876Z","primaryEndpoints":{"blob":"https://n5hoj66ysgio4functions.blob.core.windows.net/","queue":"https://n5hoj66ysgio4functions.queue.core.windows.net/","table":"https://n5hoj66ysgio4functions.table.core.windows.net/","file":"https://n5hoj66ysgio4functions.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegcus1","name":"admpperegcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:49.6550587Z","primaryEndpoints":{"dfs":"https://admpperegcus1.dfs.core.windows.net/","web":"https://admpperegcus1.z19.web.core.windows.net/","blob":"https://admpperegcus1.blob.core.windows.net/","queue":"https://admpperegcus1.queue.core.windows.net/","table":"https://admpperegcus1.table.core.windows.net/","file":"https://admpperegcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegcus1-secondary.dfs.core.windows.net/","web":"https://admpperegcus1-secondary.z19.web.core.windows.net/","blob":"https://admpperegcus1-secondary.blob.core.windows.net/","queue":"https://admpperegcus1-secondary.queue.core.windows.net/","table":"https://admpperegcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-vinnie/providers/Microsoft.Storage/storageAccounts/functionadf46d78abf7","name":"functionadf46d78abf7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T22:23:47.6971972Z","primaryEndpoints":{"blob":"https://functionadf46d78abf7.blob.core.windows.net/","queue":"https://functionadf46d78abf7.queue.core.windows.net/","table":"https://functionadf46d78abf7.table.core.windows.net/","file":"https://functionadf46d78abf7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hrpci/providers/Microsoft.Storage/storageAccounts/hrpci","name":"hrpci","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-10T19:52:39.6404170Z","primaryEndpoints":{"dfs":"https://hrpci.dfs.core.windows.net/","web":"https://hrpci.z19.web.core.windows.net/","blob":"https://hrpci.blob.core.windows.net/","queue":"https://hrpci.queue.core.windows.net/","table":"https://hrpci.table.core.windows.net/","file":"https://hrpci.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hrpci-secondary.dfs.core.windows.net/","web":"https://hrpci-secondary.z19.web.core.windows.net/","blob":"https://hrpci-secondary.blob.core.windows.net/","queue":"https://hrpci-secondary.queue.core.windows.net/","table":"https://hrpci-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus1","name":"admppecus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:00:55.3271375Z","primaryEndpoints":{"dfs":"https://admppecus1.dfs.core.windows.net/","web":"https://admppecus1.z19.web.core.windows.net/","blob":"https://admppecus1.blob.core.windows.net/","queue":"https://admppecus1.queue.core.windows.net/","table":"https://admppecus1.table.core.windows.net/","file":"https://admppecus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus1-secondary.dfs.core.windows.net/","web":"https://admppecus1-secondary.z19.web.core.windows.net/","blob":"https://admppecus1-secondary.blob.core.windows.net/","queue":"https://admppecus1-secondary.queue.core.windows.net/","table":"https://admppecus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm621654276xt","name":"gsm621654276xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevdiagusc","GenevaWPStorageGroupName":"admdevdiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:00.4301168Z","primaryEndpoints":{"blob":"https://gsm621654276xt.blob.core.windows.net/","queue":"https://gsm621654276xt.queue.core.windows.net/","table":"https://gsm621654276xt.table.core.windows.net/","file":"https://gsm621654276xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HrpAuthMetadataEndpoint/providers/Microsoft.Storage/storageAccounts/hrpauthmetadata9077","name":"hrpauthmetadata9077","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-22T07:02:50.9479282Z","primaryEndpoints":{"blob":"https://hrpauthmetadata9077.blob.core.windows.net/","queue":"https://hrpauthmetadata9077.queue.core.windows.net/","table":"https://hrpauthmetadata9077.table.core.windows.net/","file":"https://hrpauthmetadata9077.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1664594389xt","name":"gsm1664594389xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestdiagusc","GenevaWPStorageGroupName":"asdtestdiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.9569044Z","primaryEndpoints":{"blob":"https://gsm1664594389xt.blob.core.windows.net/","queue":"https://gsm1664594389xt.queue.core.windows.net/","table":"https://gsm1664594389xt.table.core.windows.net/","file":"https://gsm1664594389xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/asdcishellpublishcus","name":"asdcishellpublishcus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:15:04.3412061Z","primaryEndpoints":{"blob":"https://asdcishellpublishcus.blob.core.windows.net/","queue":"https://asdcishellpublishcus.queue.core.windows.net/","table":"https://asdcishellpublishcus.table.core.windows.net/","file":"https://asdcishellpublishcus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.Storage/storageAccounts/ev2teststoragevivardm","name":"ev2teststoragevivardm","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-08T19:49:13.2579927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-08T19:49:13.2579927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-03-08T19:49:13.1017358Z","primaryEndpoints":{"dfs":"https://ev2teststoragevivardm.dfs.core.windows.net/","web":"https://ev2teststoragevivardm.z19.web.core.windows.net/","blob":"https://ev2teststoragevivardm.blob.core.windows.net/","queue":"https://ev2teststoragevivardm.queue.core.windows.net/","table":"https://ev2teststoragevivardm.table.core.windows.net/","file":"https://ev2teststoragevivardm.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ev2teststoragevivardm-secondary.dfs.core.windows.net/","web":"https://ev2teststoragevivardm-secondary.z19.web.core.windows.net/","blob":"https://ev2teststoragevivardm-secondary.blob.core.windows.net/","queue":"https://ev2teststoragevivardm-secondary.queue.core.windows.net/","table":"https://ev2teststoragevivardm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1021036903xt","name":"gsm1021036903xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestauditusc","GenevaWPStorageGroupName":"asdtestaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:48.0506370Z","primaryEndpoints":{"blob":"https://gsm1021036903xt.blob.core.windows.net/","queue":"https://gsm1021036903xt.queue.core.windows.net/","table":"https://gsm1021036903xt.table.core.windows.net/","file":"https://gsm1021036903xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/ev2rptesttemplate","name":"ev2rptesttemplate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-04T17:18:26.5730345Z","primaryEndpoints":{"blob":"https://ev2rptesttemplate.blob.core.windows.net/","queue":"https://ev2rptesttemplate.queue.core.windows.net/","table":"https://ev2rptesttemplate.table.core.windows.net/","file":"https://ev2rptesttemplate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1377010013xt","name":"gsm1377010013xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevusc","GenevaWPStorageGroupName":"admdev"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:05:16.3693631Z","primaryEndpoints":{"blob":"https://gsm1377010013xt.blob.core.windows.net/","queue":"https://gsm1377010013xt.queue.core.windows.net/","table":"https://gsm1377010013xt.table.core.windows.net/","file":"https://gsm1377010013xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadmcicus/providers/Microsoft.Storage/storageAccounts/msadmcicusdiag234","name":"msadmcicusdiag234","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-23T21:02:21.4925713Z","primaryEndpoints":{"blob":"https://msadmcicusdiag234.blob.core.windows.net/","queue":"https://msadmcicusdiag234.queue.core.windows.net/","table":"https://msadmcicusdiag234.table.core.windows.net/","file":"https://msadmcicusdiag234.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm623896857xt","name":"gsm623896857xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.2161393Z","primaryEndpoints":{"blob":"https://gsm623896857xt.blob.core.windows.net/","queue":"https://gsm623896857xt.queue.core.windows.net/","table":"https://gsm623896857xt.table.core.windows.net/","file":"https://gsm623896857xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm918600515xt","name":"gsm918600515xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.0755113Z","primaryEndpoints":{"blob":"https://gsm918600515xt.blob.core.windows.net/","queue":"https://gsm918600515xt.queue.core.windows.net/","table":"https://gsm918600515xt.table.core.windows.net/","file":"https://gsm918600515xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSTestStg/providers/Microsoft.Storage/storageAccounts/msteststoragecdp","name":"msteststoragecdp","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-11-30T20:03:35.2024915Z","primaryEndpoints":{"dfs":"https://msteststoragecdp.dfs.core.windows.net/","web":"https://msteststoragecdp.z19.web.core.windows.net/","blob":"https://msteststoragecdp.blob.core.windows.net/","queue":"https://msteststoragecdp.queue.core.windows.net/","table":"https://msteststoragecdp.table.core.windows.net/","file":"https://msteststoragecdp.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://msteststoragecdp-secondary.dfs.core.windows.net/","web":"https://msteststoragecdp-secondary.z19.web.core.windows.net/","blob":"https://msteststoragecdp-secondary.blob.core.windows.net/","queue":"https://msteststoragecdp-secondary.queue.core.windows.net/","table":"https://msteststoragecdp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthfailuretest/providers/Microsoft.Storage/storageAccounts/resthealthfailu94f2","name":"resthealthfailu94f2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:41:08.9283097Z","primaryEndpoints":{"blob":"https://resthealthfailu94f2.blob.core.windows.net/","queue":"https://resthealthfailu94f2.queue.core.windows.net/","table":"https://resthealthfailu94f2.table.core.windows.net/","file":"https://resthealthfailu94f2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthtestendpoint/providers/Microsoft.Storage/storageAccounts/resthealthtest","name":"resthealthtest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-10-18T19:13:44.6029902Z","primaryEndpoints":{"blob":"https://resthealthtest.blob.core.windows.net/","queue":"https://resthealthtest.queue.core.windows.net/","table":"https://resthealthtest.table.core.windows.net/","file":"https://resthealthtest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm329968443xt","name":"gsm329968443xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycisecurityusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycisecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.5073939Z","primaryEndpoints":{"blob":"https://gsm329968443xt.blob.core.windows.net/","queue":"https://gsm329968443xt.queue.core.windows.net/","table":"https://gsm329968443xt.table.core.windows.net/","file":"https://gsm329968443xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/admdemofunc","name":"admdemofunc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-05T17:20:35.2825103Z","primaryEndpoints":{"blob":"https://admdemofunc.blob.core.windows.net/","queue":"https://admdemofunc.queue.core.windows.net/","table":"https://admdemofunc.table.core.windows.net/","file":"https://admdemofunc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm443216504xt","name":"gsm443216504xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevauditusc","GenevaWPStorageGroupName":"admdevaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:59.2477536Z","primaryEndpoints":{"blob":"https://gsm443216504xt.blob.core.windows.net/","queue":"https://gsm443216504xt.queue.core.windows.net/","table":"https://gsm443216504xt.table.core.windows.net/","file":"https://gsm443216504xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm657996542xt","name":"gsm657996542xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestsecurityusc","GenevaWPStorageGroupName":"asdtestsecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.3626988Z","primaryEndpoints":{"blob":"https://gsm657996542xt.blob.core.windows.net/","queue":"https://gsm657996542xt.queue.core.windows.net/","table":"https://gsm657996542xt.table.core.windows.net/","file":"https://gsm657996542xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1968177553xt","name":"gsm1968177553xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevsecurityusc","GenevaWPStorageGroupName":"admdevsecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:09:12.5668554Z","primaryEndpoints":{"blob":"https://gsm1968177553xt.blob.core.windows.net/","queue":"https://gsm1968177553xt.queue.core.windows.net/","table":"https://gsm1968177553xt.table.core.windows.net/","file":"https://gsm1968177553xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1630685468xt","name":"gsm1630685468xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.5041089Z","primaryEndpoints":{"blob":"https://gsm1630685468xt.blob.core.windows.net/","queue":"https://gsm1630685468xt.queue.core.windows.net/","table":"https://gsm1630685468xt.table.core.windows.net/","file":"https://gsm1630685468xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDCIShell/providers/Microsoft.Storage/storageAccounts/azureservicedep8b10","name":"azureservicedep8b10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-13T02:08:37.0155870Z","primaryEndpoints":{"blob":"https://azureservicedep8b10.blob.core.windows.net/","queue":"https://azureservicedep8b10.queue.core.windows.net/","table":"https://azureservicedep8b10.table.core.windows.net/","file":"https://azureservicedep8b10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm860356163xt","name":"gsm860356163xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.7072672Z","primaryEndpoints":{"blob":"https://gsm860356163xt.blob.core.windows.net/","queue":"https://gsm860356163xt.queue.core.windows.net/","table":"https://gsm860356163xt.table.core.windows.net/","file":"https://gsm860356163xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002","name":"cliadm000002","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-16T21:29:16.9251020Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-16T21:29:16.9251020Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-16T21:29:16.8001209Z","primaryEndpoints":{"blob":"https://cliadm000002.blob.core.windows.net/","queue":"https://cliadm000002.queue.core.windows.net/","table":"https://cliadm000002.table.core.windows.net/","file":"https://cliadm000002.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregcus1","name":"admciregcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:56.3705617Z","primaryEndpoints":{"dfs":"https://admciregcus1.dfs.core.windows.net/","web":"https://admciregcus1.z19.web.core.windows.net/","blob":"https://admciregcus1.blob.core.windows.net/","queue":"https://admciregcus1.queue.core.windows.net/","table":"https://admciregcus1.table.core.windows.net/","file":"https://admciregcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregcus1-secondary.dfs.core.windows.net/","web":"https://admciregcus1-secondary.z19.web.core.windows.net/","blob":"https://admciregcus1-secondary.blob.core.windows.net/","queue":"https://admciregcus1-secondary.queue.core.windows.net/","table":"https://admciregcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArfifactManifestWithSGRCUS/providers/Microsoft.Storage/storageAccounts/ftmanifestres","name":"ftmanifestres","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-16T21:31:27.9665777Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-16T21:31:27.9665777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-16T21:31:27.8727807Z","primaryEndpoints":{"blob":"https://ftmanifestres.blob.core.windows.net/","queue":"https://ftmanifestres.queue.core.windows.net/","table":"https://ftmanifestres.table.core.windows.net/","file":"https://ftmanifestres.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ftmanifestres-secondary.blob.core.windows.net/","queue":"https://ftmanifestres-secondary.queue.core.windows.net/","table":"https://ftmanifestres-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm1048699176xt","name":"gsm1048699176xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeployciauditusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeployciaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.8954242Z","primaryEndpoints":{"blob":"https://gsm1048699176xt.blob.core.windows.net/","queue":"https://gsm1048699176xt.queue.core.windows.net/","table":"https://gsm1048699176xt.table.core.windows.net/","file":"https://gsm1048699176xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/shellpublishcicus","name":"shellpublishcicus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:11:08.2096556Z","primaryEndpoints":{"blob":"https://shellpublishcicus.blob.core.windows.net/","queue":"https://shellpublishcicus.queue.core.windows.net/","table":"https://shellpublishcicus.table.core.windows.net/","file":"https://shellpublishcicus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1308418995xt","name":"gsm1308418995xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.4103606Z","primaryEndpoints":{"blob":"https://gsm1308418995xt.blob.core.windows.net/","queue":"https://gsm1308418995xt.queue.core.windows.net/","table":"https://gsm1308418995xt.table.core.windows.net/","file":"https://gsm1308418995xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CloudSourceCUS/providers/Microsoft.Storage/storageAccounts/ftcloudsourceendtoend","name":"ftcloudsourceendtoend","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-16T21:30:30.8922950Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-16T21:30:30.8922950Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-04-16T21:30:30.7048333Z","primaryEndpoints":{"dfs":"https://ftcloudsourceendtoend.dfs.core.windows.net/","web":"https://ftcloudsourceendtoend.z19.web.core.windows.net/","blob":"https://ftcloudsourceendtoend.blob.core.windows.net/","queue":"https://ftcloudsourceendtoend.queue.core.windows.net/","table":"https://ftcloudsourceendtoend.table.core.windows.net/","file":"https://ftcloudsourceendtoend.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ftcloudsourceendtoend-secondary.dfs.core.windows.net/","web":"https://ftcloudsourceendtoend-secondary.z19.web.core.windows.net/","blob":"https://ftcloudsourceendtoend-secondary.blob.core.windows.net/","queue":"https://ftcloudsourceendtoend-secondary.queue.core.windows.net/","table":"https://ftcloudsourceendtoend-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArfifactManifestWithSGRCUS/providers/Microsoft.Storage/storageAccounts/ftmanifestressophiezeng","name":"ftmanifestressophiezeng","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-05T03:15:15.5444091Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-05T03:15:15.5444091Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-05T03:15:15.3725188Z","primaryEndpoints":{"blob":"https://ftmanifestressophiezeng.blob.core.windows.net/","queue":"https://ftmanifestressophiezeng.queue.core.windows.net/","table":"https://ftmanifestressophiezeng.table.core.windows.net/","file":"https://ftmanifestressophiezeng.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ftmanifestressophiezeng-secondary.blob.core.windows.net/","queue":"https://ftmanifestressophiezeng-secondary.queue.core.windows.net/","table":"https://ftmanifestressophiezeng-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RestHealthDevTest/providers/Microsoft.Storage/storageAccounts/resthealthdevte9b75","name":"resthealthdevte9b75","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:45:52.6434003Z","primaryEndpoints":{"blob":"https://resthealthdevte9b75.blob.core.windows.net/","queue":"https://resthealthdevte9b75.queue.core.windows.net/","table":"https://resthealthdevte9b75.table.core.windows.net/","file":"https://resthealthdevte9b75.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus1","name":"admcicus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:03.5018652Z","primaryEndpoints":{"dfs":"https://admcicus1.dfs.core.windows.net/","web":"https://admcicus1.z19.web.core.windows.net/","blob":"https://admcicus1.blob.core.windows.net/","queue":"https://admcicus1.queue.core.windows.net/","table":"https://admcicus1.table.core.windows.net/","file":"https://admcicus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus1-secondary.dfs.core.windows.net/","web":"https://admcicus1-secondary.z19.web.core.windows.net/","blob":"https://admcicus1-secondary.blob.core.windows.net/","queue":"https://admcicus1-secondary.queue.core.windows.net/","table":"https://admcicus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArfifactManifestWithSGRCUS/providers/Microsoft.Storage/storageAccounts/chbatrares","name":"chbatrares","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-12T17:52:17.3219666Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-12T17:52:17.3219666Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-04-12T17:52:17.0876249Z","primaryEndpoints":{"dfs":"https://chbatrares.dfs.core.windows.net/","web":"https://chbatrares.z16.web.core.windows.net/","blob":"https://chbatrares.blob.core.windows.net/","queue":"https://chbatrares.queue.core.windows.net/","table":"https://chbatrares.table.core.windows.net/","file":"https://chbatrares.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://chbatrares-secondary.dfs.core.windows.net/","web":"https://chbatrares-secondary.z16.web.core.windows.net/","blob":"https://chbatrares-secondary.blob.core.windows.net/","queue":"https://chbatrares-secondary.queue.core.windows.net/","table":"https://chbatrares-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeneu1","name":"admppeneu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:17.9428692Z","primaryEndpoints":{"dfs":"https://admppeneu1.dfs.core.windows.net/","web":"https://admppeneu1.z16.web.core.windows.net/","blob":"https://admppeneu1.blob.core.windows.net/","queue":"https://admppeneu1.queue.core.windows.net/","table":"https://admppeneu1.table.core.windows.net/","file":"https://admppeneu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeneu1-secondary.dfs.core.windows.net/","web":"https://admppeneu1-secondary.z16.web.core.windows.net/","blob":"https://admppeneu1-secondary.blob.core.windows.net/","queue":"https://admppeneu1-secondary.queue.core.windows.net/","table":"https://admppeneu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcineu1","name":"admcineu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:22.2583722Z","primaryEndpoints":{"dfs":"https://admcineu1.dfs.core.windows.net/","web":"https://admcineu1.z16.web.core.windows.net/","blob":"https://admcineu1.blob.core.windows.net/","queue":"https://admcineu1.queue.core.windows.net/","table":"https://admcineu1.table.core.windows.net/","file":"https://admcineu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcineu1-secondary.dfs.core.windows.net/","web":"https://admcineu1-secondary.z16.web.core.windows.net/","blob":"https://admcineu1-secondary.blob.core.windows.net/","queue":"https://admcineu1-secondary.queue.core.windows.net/","table":"https://admcineu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag","name":"msadmdiag","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-11T19:39:03.2334811Z","primaryEndpoints":{"blob":"https://msadmdiag.blob.core.windows.net/","queue":"https://msadmdiag.queue.core.windows.net/","table":"https://msadmdiag.table.core.windows.net/","file":"https://msadmdiag.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimAdmTutorialServiceEUSrg/providers/Microsoft.Storage/storageAccounts/4v5c3k5mowmhe","name":"4v5c3k5mowmhe","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-10T03:33:10.1309116Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-10T03:33:10.1309116Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-10T03:33:10.0528092Z","primaryEndpoints":{"blob":"https://4v5c3k5mowmhe.blob.core.windows.net/","queue":"https://4v5c3k5mowmhe.queue.core.windows.net/","table":"https://4v5c3k5mowmhe.table.core.windows.net/","file":"https://4v5c3k5mowmhe.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceEUSrg/providers/Microsoft.Storage/storageAccounts/admftstorageaccounteus","name":"admftstorageaccounteus","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-07T21:24:24.7731346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-07T21:24:24.7731346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-07T21:24:24.7262171Z","primaryEndpoints":{"blob":"https://admftstorageaccounteus.blob.core.windows.net/","queue":"https://admftstorageaccounteus.queue.core.windows.net/","table":"https://admftstorageaccounteus.table.core.windows.net/","file":"https://admftstorageaccounteus.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admportal/providers/Microsoft.Storage/storageAccounts/admportalstg","name":"admportalstg","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T20:27:45.0356859Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T20:27:45.0356859Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-28T20:27:44.9888054Z","primaryEndpoints":{"dfs":"https://admportalstg.dfs.core.windows.net/","web":"https://admportalstg.z13.web.core.windows.net/","blob":"https://admportalstg.blob.core.windows.net/","queue":"https://admportalstg.queue.core.windows.net/","table":"https://admportalstg.table.core.windows.net/","file":"https://admportalstg.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.Service/providers/Microsoft.Storage/storageAccounts/admrestartftstgacct","name":"admrestartftstgacct","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T23:00:24.4175921Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T23:00:24.4175921Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T23:00:24.3394273Z","primaryEndpoints":{"blob":"https://admrestartftstgacct.blob.core.windows.net/","queue":"https://admrestartftstgacct.queue.core.windows.net/","table":"https://admrestartftstgacct.table.core.windows.net/","file":"https://admrestartftstgacct.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-synthetics-prod/providers/Microsoft.Storage/storageAccounts/admsyntheticsproddiag","name":"admsyntheticsproddiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-10T17:49:10.7539587Z","primaryEndpoints":{"blob":"https://admsyntheticsproddiag.blob.core.windows.net/","queue":"https://admsyntheticsproddiag.queue.core.windows.net/","table":"https://admsyntheticsproddiag.table.core.windows.net/","file":"https://admsyntheticsproddiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-quickstart/providers/Microsoft.Storage/storageAccounts/ev2testquickstartdiag","name":"ev2testquickstartdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-22T22:26:56.1714760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-22T22:26:56.1714760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-22T22:26:56.1089792Z","primaryEndpoints":{"blob":"https://ev2testquickstartdiag.blob.core.windows.net/","queue":"https://ev2testquickstartdiag.queue.core.windows.net/","table":"https://ev2testquickstartdiag.table.core.windows.net/","file":"https://ev2testquickstartdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-swtamrak/providers/Microsoft.Storage/storageAccounts/ev2testswtamrakdiag","name":"ev2testswtamrakdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-03T18:30:06.9673236Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-03T18:30:06.9673236Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-03T18:30:06.9048055Z","primaryEndpoints":{"blob":"https://ev2testswtamrakdiag.blob.core.windows.net/","queue":"https://ev2testswtamrakdiag.queue.core.windows.net/","table":"https://ev2testswtamrakdiag.table.core.windows.net/","file":"https://ev2testswtamrakdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mandardev-Migrated/providers/Microsoft.Storage/storageAccounts/mandardev","name":"mandardev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T20:32:29.3348874Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-04T07:08:13.0835184Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-29T20:36:41.4942538Z","primaryEndpoints":{"blob":"https://mandardev.blob.core.windows.net/","queue":"https://mandardev.queue.core.windows.net/","table":"https://mandardev.table.core.windows.net/","file":"https://mandardev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceEUSrg/providers/Microsoft.Storage/storageAccounts/odgl6zpjcwo5g","name":"odgl6zpjcwo5g","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:07:59.7976368Z","primaryEndpoints":{"blob":"https://odgl6zpjcwo5g.blob.core.windows.net/","queue":"https://odgl6zpjcwo5g.queue.core.windows.net/","table":"https://odgl6zpjcwo5g.table.core.windows.net/","file":"https://odgl6zpjcwo5g.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus21","name":"admcieus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:15.1754902Z","primaryEndpoints":{"dfs":"https://admcieus21.dfs.core.windows.net/","web":"https://admcieus21.z20.web.core.windows.net/","blob":"https://admcieus21.blob.core.windows.net/","queue":"https://admcieus21.queue.core.windows.net/","table":"https://admcieus21.table.core.windows.net/","file":"https://admcieus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus21-secondary.dfs.core.windows.net/","web":"https://admcieus21-secondary.z20.web.core.windows.net/","blob":"https://admcieus21-secondary.blob.core.windows.net/","queue":"https://admcieus21-secondary.queue.core.windows.net/","table":"https://admcieus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus22","name":"admcieus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:59.5640997Z","primaryEndpoints":{"dfs":"https://admcieus22.dfs.core.windows.net/","web":"https://admcieus22.z20.web.core.windows.net/","blob":"https://admcieus22.blob.core.windows.net/","queue":"https://admcieus22.queue.core.windows.net/","table":"https://admcieus22.table.core.windows.net/","file":"https://admcieus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus22-secondary.dfs.core.windows.net/","web":"https://admcieus22-secondary.z20.web.core.windows.net/","blob":"https://admcieus22-secondary.blob.core.windows.net/","queue":"https://admcieus22-secondary.queue.core.windows.net/","table":"https://admcieus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregeus21","name":"admciregeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:22:25.1351453Z","primaryEndpoints":{"dfs":"https://admciregeus21.dfs.core.windows.net/","web":"https://admciregeus21.z20.web.core.windows.net/","blob":"https://admciregeus21.blob.core.windows.net/","queue":"https://admciregeus21.queue.core.windows.net/","table":"https://admciregeus21.table.core.windows.net/","file":"https://admciregeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregeus21-secondary.dfs.core.windows.net/","web":"https://admciregeus21-secondary.z20.web.core.windows.net/","blob":"https://admciregeus21-secondary.blob.core.windows.net/","queue":"https://admciregeus21-secondary.queue.core.windows.net/","table":"https://admciregeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus21","name":"admppeeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:01.1138624Z","primaryEndpoints":{"dfs":"https://admppeeus21.dfs.core.windows.net/","web":"https://admppeeus21.z20.web.core.windows.net/","blob":"https://admppeeus21.blob.core.windows.net/","queue":"https://admppeeus21.queue.core.windows.net/","table":"https://admppeeus21.table.core.windows.net/","file":"https://admppeeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus21-secondary.dfs.core.windows.net/","web":"https://admppeeus21-secondary.z20.web.core.windows.net/","blob":"https://admppeeus21-secondary.blob.core.windows.net/","queue":"https://admppeeus21-secondary.queue.core.windows.net/","table":"https://admppeeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus22","name":"admppeeus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:24.2368190Z","primaryEndpoints":{"dfs":"https://admppeeus22.dfs.core.windows.net/","web":"https://admppeeus22.z20.web.core.windows.net/","blob":"https://admppeeus22.blob.core.windows.net/","queue":"https://admppeeus22.queue.core.windows.net/","table":"https://admppeeus22.table.core.windows.net/","file":"https://admppeeus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus22-secondary.dfs.core.windows.net/","web":"https://admppeeus22-secondary.z20.web.core.windows.net/","blob":"https://admppeeus22-secondary.blob.core.windows.net/","queue":"https://admppeeus22-secondary.queue.core.windows.net/","table":"https://admppeeus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegeus21","name":"admpperegeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:04:52.4281644Z","primaryEndpoints":{"dfs":"https://admpperegeus21.dfs.core.windows.net/","web":"https://admpperegeus21.z20.web.core.windows.net/","blob":"https://admpperegeus21.blob.core.windows.net/","queue":"https://admpperegeus21.queue.core.windows.net/","table":"https://admpperegeus21.table.core.windows.net/","file":"https://admpperegeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegeus21-secondary.dfs.core.windows.net/","web":"https://admpperegeus21-secondary.z20.web.core.windows.net/","blob":"https://admpperegeus21-secondary.blob.core.windows.net/","queue":"https://admpperegeus21-secondary.queue.core.windows.net/","table":"https://admpperegeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag342","name":"msadmdiag342","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-12T22:36:25.5004565Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-12T22:36:25.5004565Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-12T22:36:25.3754598Z","primaryEndpoints":{"blob":"https://msadmdiag342.blob.core.windows.net/","queue":"https://msadmdiag342.queue.core.windows.net/","table":"https://msadmdiag342.table.core.windows.net/","file":"https://msadmdiag342.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciwus1","name":"admciwus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:20:36.8362556Z","primaryEndpoints":{"dfs":"https://admciwus1.dfs.core.windows.net/","web":"https://admciwus1.z22.web.core.windows.net/","blob":"https://admciwus1.blob.core.windows.net/","queue":"https://admciwus1.queue.core.windows.net/","table":"https://admciwus1.table.core.windows.net/","file":"https://admciwus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciwus1-secondary.dfs.core.windows.net/","web":"https://admciwus1-secondary.z22.web.core.windows.net/","blob":"https://admciwus1-secondary.blob.core.windows.net/","queue":"https://admciwus1-secondary.queue.core.windows.net/","table":"https://admciwus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-client-validations/providers/Microsoft.Storage/storageAccounts/admclientvalidationsdiag","name":"admclientvalidationsdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-03T00:45:31.3981051Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-03T00:45:31.3981051Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-03T00:45:31.3044047Z","primaryEndpoints":{"blob":"https://admclientvalidationsdiag.blob.core.windows.net/","queue":"https://admclientvalidationsdiag.queue.core.windows.net/","table":"https://admclientvalidationsdiag.table.core.windows.net/","file":"https://admclientvalidationsdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceWUSrg/providers/Microsoft.Storage/storageAccounts/admftstorageaccountwus","name":"admftstorageaccountwus","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-07T21:24:06.7187651Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-07T21:24:06.7187651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-07T21:24:06.6249690Z","primaryEndpoints":{"blob":"https://admftstorageaccountwus.blob.core.windows.net/","queue":"https://admftstorageaccountwus.queue.core.windows.net/","table":"https://admftstorageaccountwus.table.core.windows.net/","file":"https://admftstorageaccountwus.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppewus1","name":"admppewus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:47.5598191Z","primaryEndpoints":{"dfs":"https://admppewus1.dfs.core.windows.net/","web":"https://admppewus1.z22.web.core.windows.net/","blob":"https://admppewus1.blob.core.windows.net/","queue":"https://admppewus1.queue.core.windows.net/","table":"https://admppewus1.table.core.windows.net/","file":"https://admppewus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppewus1-secondary.dfs.core.windows.net/","web":"https://admppewus1-secondary.z22.web.core.windows.net/","blob":"https://admppewus1-secondary.blob.core.windows.net/","queue":"https://admppewus1-secondary.queue.core.windows.net/","table":"https://admppewus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctionsef89fd26","name":"azurefunctionsef89fd26","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T00:41:49.5340063Z","primaryEndpoints":{"blob":"https://azurefunctionsef89fd26.blob.core.windows.net/","queue":"https://azurefunctionsef89fd26.queue.core.windows.net/","table":"https://azurefunctionsef89fd26.table.core.windows.net/","file":"https://azurefunctionsef89fd26.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs453012dcb5039x4e96x8e6","name":"cs453012dcb5039x4e96x8e6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-12T18:58:59.8070555Z","primaryEndpoints":{"blob":"https://cs453012dcb5039x4e96x8e6.blob.core.windows.net/","queue":"https://cs453012dcb5039x4e96x8e6.queue.core.windows.net/","table":"https://cs453012dcb5039x4e96x8e6.table.core.windows.net/","file":"https://cs453012dcb5039x4e96x8e6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimadmqs1/providers/Microsoft.Storage/storageAccounts/deoletimadmqs1stg","name":"deoletimadmqs1stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:58:02.4874839Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:58:02.4874839Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T22:58:02.2999705Z","primaryEndpoints":{"dfs":"https://deoletimadmqs1stg.dfs.core.windows.net/","web":"https://deoletimadmqs1stg.z22.web.core.windows.net/","blob":"https://deoletimadmqs1stg.blob.core.windows.net/","queue":"https://deoletimadmqs1stg.queue.core.windows.net/","table":"https://deoletimadmqs1stg.table.core.windows.net/","file":"https://deoletimadmqs1stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletim-adm-qs_fix/providers/Microsoft.Storage/storageAccounts/deoletimadmqs252stg","name":"deoletimadmqs252stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:53:38.0463747Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:53:38.0463747Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T22:53:37.7338928Z","primaryEndpoints":{"dfs":"https://deoletimadmqs252stg.dfs.core.windows.net/","web":"https://deoletimadmqs252stg.z22.web.core.windows.net/","blob":"https://deoletimadmqs252stg.blob.core.windows.net/","queue":"https://deoletimadmqs252stg.queue.core.windows.net/","table":"https://deoletimadmqs252stg.table.core.windows.net/","file":"https://deoletimadmqs252stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletim-adm-qs_fix2/providers/Microsoft.Storage/storageAccounts/deoletimadmqsfi279stg","name":"deoletimadmqsfi279stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T23:06:36.1853821Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T23:06:36.1853821Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T23:06:35.9510035Z","primaryEndpoints":{"dfs":"https://deoletimadmqsfi279stg.dfs.core.windows.net/","web":"https://deoletimadmqsfi279stg.z22.web.core.windows.net/","blob":"https://deoletimadmqsfi279stg.blob.core.windows.net/","queue":"https://deoletimadmqsfi279stg.queue.core.windows.net/","table":"https://deoletimadmqsfi279stg.table.core.windows.net/","file":"https://deoletimadmqsfi279stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimAdmQs/providers/Microsoft.Storage/storageAccounts/deoletimadmqsstg","name":"deoletimadmqsstg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-11T01:08:06.9479803Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-11T01:08:06.9479803Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-11T01:08:06.7917354Z","primaryEndpoints":{"dfs":"https://deoletimadmqsstg.dfs.core.windows.net/","web":"https://deoletimadmqsstg.z22.web.core.windows.net/","blob":"https://deoletimadmqsstg.blob.core.windows.net/","queue":"https://deoletimadmqsstg.queue.core.windows.net/","table":"https://deoletimadmqsstg.table.core.windows.net/","file":"https://deoletimadmqsstg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deo-qs_fix2/providers/Microsoft.Storage/storageAccounts/deoqsfix224stg","name":"deoqsfix224stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-25T22:20:03.2176611Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-25T22:20:03.2176611Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-25T22:20:03.0145310Z","primaryEndpoints":{"dfs":"https://deoqsfix224stg.dfs.core.windows.net/","web":"https://deoqsfix224stg.z22.web.core.windows.net/","blob":"https://deoqsfix224stg.blob.core.windows.net/","queue":"https://deoqsfix224stg.queue.core.windows.net/","table":"https://deoqsfix224stg.table.core.windows.net/","file":"https://deoqsfix224stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/ev2testdeveshstgv2","name":"ev2testdeveshstgv2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-03T22:42:23.8897348Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-03T22:42:23.8897348Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-03T22:42:23.8428698Z","primaryEndpoints":{"dfs":"https://ev2testdeveshstgv2.dfs.core.windows.net/","web":"https://ev2testdeveshstgv2.z22.web.core.windows.net/","blob":"https://ev2testdeveshstgv2.blob.core.windows.net/","queue":"https://ev2testdeveshstgv2.queue.core.windows.net/","table":"https://ev2testdeveshstgv2.table.core.windows.net/","file":"https://ev2testdeveshstgv2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ev2testdeveshstgv2-secondary.dfs.core.windows.net/","web":"https://ev2testdeveshstgv2-secondary.z22.web.core.windows.net/","blob":"https://ev2testdeveshstgv2-secondary.blob.core.windows.net/","queue":"https://ev2testdeveshstgv2-secondary.queue.core.windows.net/","table":"https://ev2testdeveshstgv2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-iris/providers/Microsoft.Storage/storageAccounts/ev2testirisdiag","name":"ev2testirisdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T15:24:43.8861136Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T15:24:43.8861136Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:24:43.7767414Z","primaryEndpoints":{"blob":"https://ev2testirisdiag.blob.core.windows.net/","queue":"https://ev2testirisdiag.queue.core.windows.net/","table":"https://ev2testirisdiag.table.core.windows.net/","file":"https://ev2testirisdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sampletestresourcegroup/providers/Microsoft.Storage/storageAccounts/g3uktb4im6td2functions","name":"g3uktb4im6td2functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-01T02:01:53.9239903Z","primaryEndpoints":{"blob":"https://g3uktb4im6td2functions.blob.core.windows.net/","queue":"https://g3uktb4im6td2functions.queue.core.windows.net/","table":"https://g3uktb4im6td2functions.table.core.windows.net/","file":"https://g3uktb4im6td2functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceWUSrg/providers/Microsoft.Storage/storageAccounts/in7tlbyhwo3ss","name":"in7tlbyhwo3ss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:08:04.3489449Z","primaryEndpoints":{"blob":"https://in7tlbyhwo3ss.blob.core.windows.net/","queue":"https://in7tlbyhwo3ss.queue.core.windows.net/","table":"https://in7tlbyhwo3ss.table.core.windows.net/","file":"https://in7tlbyhwo3ss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FunctionalTestWUS/providers/Microsoft.Storage/storageAccounts/nestedev2storage","name":"nestedev2storage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-17T21:31:20.5471773Z","primaryEndpoints":{"blob":"https://nestedev2storage.blob.core.windows.net/","queue":"https://nestedev2storage.queue.core.windows.net/","table":"https://nestedev2storage.table.core.windows.net/","file":"https://nestedev2storage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-sdk-tests/providers/Microsoft.Storage/storageAccounts/sdktests","name":"sdktests","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-25T21:51:56.4144314Z","primaryEndpoints":{"dfs":"https://sdktests.dfs.core.windows.net/","web":"https://sdktests.z22.web.core.windows.net/","blob":"https://sdktests.blob.core.windows.net/","queue":"https://sdktests.queue.core.windows.net/","table":"https://sdktests.table.core.windows.net/","file":"https://sdktests.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sdktests-secondary.dfs.core.windows.net/","web":"https://sdktests-secondary.z22.web.core.windows.net/","blob":"https://sdktests-secondary.blob.core.windows.net/","queue":"https://sdktests-secondary.queue.core.windows.net/","table":"https://sdktests-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SyntheticsTests/providers/Microsoft.Storage/storageAccounts/syntheticspolicytest","name":"syntheticspolicytest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-07T00:09:13.7120296Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-07T00:09:13.7120296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-07T00:09:13.6339034Z","primaryEndpoints":{"blob":"https://syntheticspolicytest.blob.core.windows.net/","queue":"https://syntheticspolicytest.queue.core.windows.net/","table":"https://syntheticspolicytest.table.core.windows.net/","file":"https://syntheticspolicytest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/syntheticstests/providers/Microsoft.Storage/storageAccounts/syntheticstest","name":"syntheticstest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-14T00:28:41.8187324Z","primaryEndpoints":{"blob":"https://syntheticstest.blob.core.windows.net/","queue":"https://syntheticstest.queue.core.windows.net/","table":"https://syntheticstest.table.core.windows.net/","file":"https://syntheticstest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IrisYueqiTanExpressV2-2/providers/Microsoft.Storage/storageAccounts/xrypq37bo4po4functions","name":"xrypq37bo4po4functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-09T00:14:17.6365897Z","primaryEndpoints":{"blob":"https://xrypq37bo4po4functions.blob.core.windows.net/","queue":"https://xrypq37bo4po4functions.queue.core.windows.net/","table":"https://xrypq37bo4po4functions.table.core.windows.net/","file":"https://xrypq37bo4po4functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimAdmTutorialServiceWUSrg/providers/Microsoft.Storage/storageAccounts/xs3hwv3kves4k","name":"xs3hwv3kves4k","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-10T03:33:01.0581049Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-10T03:33:01.0581049Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-10T03:33:00.9643580Z","primaryEndpoints":{"blob":"https://xs3hwv3kves4k.blob.core.windows.net/","queue":"https://xs3hwv3kves4k.queue.core.windows.net/","table":"https://xs3hwv3kves4k.table.core.windows.net/","file":"https://xs3hwv3kves4k.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimServiceWUSrg/providers/Microsoft.Storage/storageAccounts/zdydbpivpbgai","name":"zdydbpivpbgai","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-26T02:18:58.2404928Z","primaryEndpoints":{"blob":"https://zdydbpivpbgai.blob.core.windows.net/","queue":"https://zdydbpivpbgai.queue.core.windows.net/","table":"https://zdydbpivpbgai.table.core.windows.net/","file":"https://zdydbpivpbgai.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupwus001/providers/Microsoft.Storage/storageAccounts/zxagicpuacs2ksawinvm","name":"zxagicpuacs2ksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:43:09.3042958Z","primaryEndpoints":{"blob":"https://zxagicpuacs2ksawinvm.blob.core.windows.net/","queue":"https://zxagicpuacs2ksawinvm.queue.core.windows.net/","table":"https://zxagicpuacs2ksawinvm.table.core.windows.net/","file":"https://zxagicpuacs2ksawinvm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupweu002/providers/Microsoft.Storage/storageAccounts/h2he2t3nvdnjksawinvm","name":"h2he2t3nvdnjksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:54:35.2244069Z","primaryEndpoints":{"blob":"https://h2he2t3nvdnjksawinvm.blob.core.windows.net/","queue":"https://h2he2t3nvdnjksawinvm.queue.core.windows.net/","table":"https://h2he2t3nvdnjksawinvm.table.core.windows.net/","file":"https://h2he2t3nvdnjksawinvm.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mscontainers/providers/Microsoft.Storage/storageAccounts/sflogsstorage","name":"sflogsstorage","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-08T01:13:21.7706416Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-08T01:13:21.7706416Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-08T01:13:21.7080949Z","primaryEndpoints":{"blob":"https://sflogsstorage.blob.core.windows.net/","queue":"https://sflogsstorage.queue.core.windows.net/","table":"https://sflogsstorage.table.core.windows.net/","file":"https://sflogsstorage.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available","secondaryLocation":"southcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sflogsstorage-secondary.blob.core.windows.net/","queue":"https://sflogsstorage-secondary.queue.core.windows.net/","table":"https://sflogsstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus1","name":"admcicus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:03.5018652Z","primaryEndpoints":{"dfs":"https://admcicus1.dfs.core.windows.net/","web":"https://admcicus1.z19.web.core.windows.net/","blob":"https://admcicus1.blob.core.windows.net/","queue":"https://admcicus1.queue.core.windows.net/","table":"https://admcicus1.table.core.windows.net/","file":"https://admcicus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus1-secondary.dfs.core.windows.net/","web":"https://admcicus1-secondary.z19.web.core.windows.net/","blob":"https://admcicus1-secondary.blob.core.windows.net/","queue":"https://admcicus1-secondary.queue.core.windows.net/","table":"https://admcicus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus2","name":"admcicus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:42.3250263Z","primaryEndpoints":{"dfs":"https://admcicus2.dfs.core.windows.net/","web":"https://admcicus2.z19.web.core.windows.net/","blob":"https://admcicus2.blob.core.windows.net/","queue":"https://admcicus2.queue.core.windows.net/","table":"https://admcicus2.table.core.windows.net/","file":"https://admcicus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus2-secondary.dfs.core.windows.net/","web":"https://admcicus2-secondary.z19.web.core.windows.net/","blob":"https://admcicus2-secondary.blob.core.windows.net/","queue":"https://admcicus2-secondary.queue.core.windows.net/","table":"https://admcicus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregcus1","name":"admciregcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:56.3705617Z","primaryEndpoints":{"dfs":"https://admciregcus1.dfs.core.windows.net/","web":"https://admciregcus1.z19.web.core.windows.net/","blob":"https://admciregcus1.blob.core.windows.net/","queue":"https://admciregcus1.queue.core.windows.net/","table":"https://admciregcus1.table.core.windows.net/","file":"https://admciregcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregcus1-secondary.dfs.core.windows.net/","web":"https://admciregcus1-secondary.z19.web.core.windows.net/","blob":"https://admciregcus1-secondary.blob.core.windows.net/","queue":"https://admciregcus1-secondary.queue.core.windows.net/","table":"https://admciregcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/admdemofunc","name":"admdemofunc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-05T17:20:35.2825103Z","primaryEndpoints":{"blob":"https://admdemofunc.blob.core.windows.net/","queue":"https://admdemofunc.queue.core.windows.net/","table":"https://admdemofunc.table.core.windows.net/","file":"https://admdemofunc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus1","name":"admppecus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:00:55.3271375Z","primaryEndpoints":{"dfs":"https://admppecus1.dfs.core.windows.net/","web":"https://admppecus1.z19.web.core.windows.net/","blob":"https://admppecus1.blob.core.windows.net/","queue":"https://admppecus1.queue.core.windows.net/","table":"https://admppecus1.table.core.windows.net/","file":"https://admppecus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus1-secondary.dfs.core.windows.net/","web":"https://admppecus1-secondary.z19.web.core.windows.net/","blob":"https://admppecus1-secondary.blob.core.windows.net/","queue":"https://admppecus1-secondary.queue.core.windows.net/","table":"https://admppecus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus2","name":"admppecus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:01:28.3032730Z","primaryEndpoints":{"dfs":"https://admppecus2.dfs.core.windows.net/","web":"https://admppecus2.z19.web.core.windows.net/","blob":"https://admppecus2.blob.core.windows.net/","queue":"https://admppecus2.queue.core.windows.net/","table":"https://admppecus2.table.core.windows.net/","file":"https://admppecus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus2-secondary.dfs.core.windows.net/","web":"https://admppecus2-secondary.z19.web.core.windows.net/","blob":"https://admppecus2-secondary.blob.core.windows.net/","queue":"https://admppecus2-secondary.queue.core.windows.net/","table":"https://admppecus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegcus1","name":"admpperegcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:49.6550587Z","primaryEndpoints":{"dfs":"https://admpperegcus1.dfs.core.windows.net/","web":"https://admpperegcus1.z19.web.core.windows.net/","blob":"https://admpperegcus1.blob.core.windows.net/","queue":"https://admpperegcus1.queue.core.windows.net/","table":"https://admpperegcus1.table.core.windows.net/","file":"https://admpperegcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegcus1-secondary.dfs.core.windows.net/","web":"https://admpperegcus1-secondary.z19.web.core.windows.net/","blob":"https://admpperegcus1-secondary.blob.core.windows.net/","queue":"https://admpperegcus1-secondary.queue.core.windows.net/","table":"https://admpperegcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDKustoCI/providers/Microsoft.Storage/storageAccounts/asdcikustoingestcus","name":"asdcikustoingestcus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-17T21:56:25.2222001Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-17T21:56:25.2222001Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-17T21:56:25.1128259Z","primaryEndpoints":{"dfs":"https://asdcikustoingestcus.dfs.core.windows.net/","web":"https://asdcikustoingestcus.z19.web.core.windows.net/","blob":"https://asdcikustoingestcus.blob.core.windows.net/","queue":"https://asdcikustoingestcus.queue.core.windows.net/","table":"https://asdcikustoingestcus.table.core.windows.net/","file":"https://asdcikustoingestcus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://asdcikustoingestcus-secondary.dfs.core.windows.net/","web":"https://asdcikustoingestcus-secondary.z19.web.core.windows.net/","blob":"https://asdcikustoingestcus-secondary.blob.core.windows.net/","queue":"https://asdcikustoingestcus-secondary.queue.core.windows.net/","table":"https://asdcikustoingestcus-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/asdcishellpublishcus","name":"asdcishellpublishcus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:15:04.3412061Z","primaryEndpoints":{"blob":"https://asdcishellpublishcus.blob.core.windows.net/","queue":"https://asdcishellpublishcus.queue.core.windows.net/","table":"https://asdcishellpublishcus.table.core.windows.net/","file":"https://asdcishellpublishcus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDCIShell/providers/Microsoft.Storage/storageAccounts/azureservicedep8b10","name":"azureservicedep8b10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-13T02:08:37.0155870Z","primaryEndpoints":{"blob":"https://azureservicedep8b10.blob.core.windows.net/","queue":"https://azureservicedep8b10.queue.core.windows.net/","table":"https://azureservicedep8b10.table.core.windows.net/","file":"https://azureservicedep8b10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestAutoRestartEndToEndRG/providers/Microsoft.Storage/storageAccounts/chbatraftauto","name":"chbatraftauto","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-09T23:16:09.4018964Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-09T23:16:09.4018964Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-09T23:16:09.3081610Z","primaryEndpoints":{"dfs":"https://chbatraftauto.dfs.core.windows.net/","web":"https://chbatraftauto.z19.web.core.windows.net/","blob":"https://chbatraftauto.blob.core.windows.net/","queue":"https://chbatraftauto.queue.core.windows.net/","table":"https://chbatraftauto.table.core.windows.net/","file":"https://chbatraftauto.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://chbatraftauto-secondary.dfs.core.windows.net/","web":"https://chbatraftauto-secondary.z19.web.core.windows.net/","blob":"https://chbatraftauto-secondary.blob.core.windows.net/","queue":"https://chbatraftauto-secondary.queue.core.windows.net/","table":"https://chbatraftauto-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm6z5mo7/providers/Microsoft.Storage/storageAccounts/cliadmimivhpssdo5mx4azhh","name":"cliadmimivhpssdo5mx4azhh","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-29T01:44:48.7622213Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-29T01:44:48.7622213Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-29T01:44:48.6997111Z","primaryEndpoints":{"blob":"https://cliadmimivhpssdo5mx4azhh.blob.core.windows.net/","queue":"https://cliadmimivhpssdo5mx4azhh.queue.core.windows.net/","table":"https://cliadmimivhpssdo5mx4azhh.table.core.windows.net/","file":"https://cliadmimivhpssdo5mx4azhh.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm2bzwgl/providers/Microsoft.Storage/storageAccounts/cliadmmuypsio34m2tc2wbbz","name":"cliadmmuypsio34m2tc2wbbz","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T03:12:31.6768474Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T03:12:31.6768474Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T03:12:31.5830752Z","primaryEndpoints":{"blob":"https://cliadmmuypsio34m2tc2wbbz.blob.core.windows.net/","queue":"https://cliadmmuypsio34m2tc2wbbz.queue.core.windows.net/","table":"https://cliadmmuypsio34m2tc2wbbz.table.core.windows.net/","file":"https://cliadmmuypsio34m2tc2wbbz.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002","name":"cliadm000002","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T00:10:18.3505549Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T00:10:18.3505549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T00:10:18.2411715Z","primaryEndpoints":{"blob":"https://cliadm000002.blob.core.windows.net/","queue":"https://cliadm000002.queue.core.windows.net/","table":"https://cliadm000002.table.core.windows.net/","file":"https://cliadm000002.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoadmqsval/providers/Microsoft.Storage/storageAccounts/deoadmqsval41stg","name":"deoadmqsval41stg","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T15:03:32.8822218Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T15:03:32.8822218Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-12T15:03:32.7886326Z","primaryEndpoints":{"dfs":"https://deoadmqsval41stg.dfs.core.windows.net/","web":"https://deoadmqsval41stg.z19.web.core.windows.net/","blob":"https://deoadmqsval41stg.blob.core.windows.net/","queue":"https://deoadmqsval41stg.queue.core.windows.net/","table":"https://deoadmqsval41stg.table.core.windows.net/","file":"https://deoadmqsval41stg.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/ev2rptesttemplate","name":"ev2rptesttemplate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-04T17:18:26.5730345Z","primaryEndpoints":{"blob":"https://ev2rptesttemplate.blob.core.windows.net/","queue":"https://ev2rptesttemplate.queue.core.windows.net/","table":"https://ev2rptesttemplate.table.core.windows.net/","file":"https://ev2rptesttemplate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2testadmqs/providers/Microsoft.Storage/storageAccounts/ev2testadmqsstg","name":"ev2testadmqsstg","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:31:13.3396776Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:31:13.3396776Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T22:31:13.2459309Z","primaryEndpoints":{"dfs":"https://ev2testadmqsstg.dfs.core.windows.net/","web":"https://ev2testadmqsstg.z19.web.core.windows.net/","blob":"https://ev2testadmqsstg.blob.core.windows.net/","queue":"https://ev2testadmqsstg.queue.core.windows.net/","table":"https://ev2testadmqsstg.table.core.windows.net/","file":"https://ev2testadmqsstg.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-quickstart/providers/Microsoft.Storage/storageAccounts/ev2testquickstartdiag440","name":"ev2testquickstartdiag440","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-23T21:07:28.0398002Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-23T21:07:28.0398002Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-23T21:07:27.9617305Z","primaryEndpoints":{"blob":"https://ev2testquickstartdiag440.blob.core.windows.net/","queue":"https://ev2testquickstartdiag440.queue.core.windows.net/","table":"https://ev2testquickstartdiag440.table.core.windows.net/","file":"https://ev2testquickstartdiag440.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-swtamrak/providers/Microsoft.Storage/storageAccounts/ev2testswtamrakdiag190","name":"ev2testswtamrakdiag190","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T23:26:09.4084588Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T23:26:09.4084588Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T23:26:09.3147309Z","primaryEndpoints":{"blob":"https://ev2testswtamrakdiag190.blob.core.windows.net/","queue":"https://ev2testswtamrakdiag190.queue.core.windows.net/","table":"https://ev2testswtamrakdiag190.table.core.windows.net/","file":"https://ev2testswtamrakdiag190.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestNoRolloutPolicy001/providers/Microsoft.Storage/storageAccounts/ftnorolloutpolicy001","name":"ftnorolloutpolicy001","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-29T03:55:36.6836980Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-29T03:55:36.6836980Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-29T03:55:36.5898989Z","primaryEndpoints":{"dfs":"https://ftnorolloutpolicy001.dfs.core.windows.net/","web":"https://ftnorolloutpolicy001.z19.web.core.windows.net/","blob":"https://ftnorolloutpolicy001.blob.core.windows.net/","queue":"https://ftnorolloutpolicy001.queue.core.windows.net/","table":"https://ftnorolloutpolicy001.table.core.windows.net/","file":"https://ftnorolloutpolicy001.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ftnorolloutpolicy001-secondary.dfs.core.windows.net/","web":"https://ftnorolloutpolicy001-secondary.z19.web.core.windows.net/","blob":"https://ftnorolloutpolicy001-secondary.blob.core.windows.net/","queue":"https://ftnorolloutpolicy001-secondary.queue.core.windows.net/","table":"https://ftnorolloutpolicy001-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-vinnie/providers/Microsoft.Storage/storageAccounts/functionadf46d78abf7","name":"functionadf46d78abf7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T22:23:47.6971972Z","primaryEndpoints":{"blob":"https://functionadf46d78abf7.blob.core.windows.net/","queue":"https://functionadf46d78abf7.queue.core.windows.net/","table":"https://functionadf46d78abf7.table.core.windows.net/","file":"https://functionadf46d78abf7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1021036903xt","name":"gsm1021036903xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestauditusc","GenevaWPStorageGroupName":"asdtestaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:48.0506370Z","primaryEndpoints":{"blob":"https://gsm1021036903xt.blob.core.windows.net/","queue":"https://gsm1021036903xt.queue.core.windows.net/","table":"https://gsm1021036903xt.table.core.windows.net/","file":"https://gsm1021036903xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm1048699176xt","name":"gsm1048699176xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeployciauditusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeployciaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.8954242Z","primaryEndpoints":{"blob":"https://gsm1048699176xt.blob.core.windows.net/","queue":"https://gsm1048699176xt.queue.core.windows.net/","table":"https://gsm1048699176xt.table.core.windows.net/","file":"https://gsm1048699176xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1308418995xt","name":"gsm1308418995xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.4103606Z","primaryEndpoints":{"blob":"https://gsm1308418995xt.blob.core.windows.net/","queue":"https://gsm1308418995xt.queue.core.windows.net/","table":"https://gsm1308418995xt.table.core.windows.net/","file":"https://gsm1308418995xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1377010013xt","name":"gsm1377010013xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevusc","GenevaWPStorageGroupName":"admdev"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:05:16.3693631Z","primaryEndpoints":{"blob":"https://gsm1377010013xt.blob.core.windows.net/","queue":"https://gsm1377010013xt.queue.core.windows.net/","table":"https://gsm1377010013xt.table.core.windows.net/","file":"https://gsm1377010013xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1630685468xt","name":"gsm1630685468xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.5041089Z","primaryEndpoints":{"blob":"https://gsm1630685468xt.blob.core.windows.net/","queue":"https://gsm1630685468xt.queue.core.windows.net/","table":"https://gsm1630685468xt.table.core.windows.net/","file":"https://gsm1630685468xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1664594389xt","name":"gsm1664594389xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestdiagusc","GenevaWPStorageGroupName":"asdtestdiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.9569044Z","primaryEndpoints":{"blob":"https://gsm1664594389xt.blob.core.windows.net/","queue":"https://gsm1664594389xt.queue.core.windows.net/","table":"https://gsm1664594389xt.table.core.windows.net/","file":"https://gsm1664594389xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1968177553xt","name":"gsm1968177553xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevsecurityusc","GenevaWPStorageGroupName":"admdevsecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:09:12.5668554Z","primaryEndpoints":{"blob":"https://gsm1968177553xt.blob.core.windows.net/","queue":"https://gsm1968177553xt.queue.core.windows.net/","table":"https://gsm1968177553xt.table.core.windows.net/","file":"https://gsm1968177553xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm212609152xt","name":"gsm212609152xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycidiagusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycidiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:39.3494589Z","primaryEndpoints":{"blob":"https://gsm212609152xt.blob.core.windows.net/","queue":"https://gsm212609152xt.queue.core.windows.net/","table":"https://gsm212609152xt.table.core.windows.net/","file":"https://gsm212609152xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm329968443xt","name":"gsm329968443xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycisecurityusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycisecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.5073939Z","primaryEndpoints":{"blob":"https://gsm329968443xt.blob.core.windows.net/","queue":"https://gsm329968443xt.queue.core.windows.net/","table":"https://gsm329968443xt.table.core.windows.net/","file":"https://gsm329968443xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm443216504xt","name":"gsm443216504xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevauditusc","GenevaWPStorageGroupName":"admdevaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:59.2477536Z","primaryEndpoints":{"blob":"https://gsm443216504xt.blob.core.windows.net/","queue":"https://gsm443216504xt.queue.core.windows.net/","table":"https://gsm443216504xt.table.core.windows.net/","file":"https://gsm443216504xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm621654276xt","name":"gsm621654276xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevdiagusc","GenevaWPStorageGroupName":"admdevdiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:00.4301168Z","primaryEndpoints":{"blob":"https://gsm621654276xt.blob.core.windows.net/","queue":"https://gsm621654276xt.queue.core.windows.net/","table":"https://gsm621654276xt.table.core.windows.net/","file":"https://gsm621654276xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm623896857xt","name":"gsm623896857xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.2161393Z","primaryEndpoints":{"blob":"https://gsm623896857xt.blob.core.windows.net/","queue":"https://gsm623896857xt.queue.core.windows.net/","table":"https://gsm623896857xt.table.core.windows.net/","file":"https://gsm623896857xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm657996542xt","name":"gsm657996542xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestsecurityusc","GenevaWPStorageGroupName":"asdtestsecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.3626988Z","primaryEndpoints":{"blob":"https://gsm657996542xt.blob.core.windows.net/","queue":"https://gsm657996542xt.queue.core.windows.net/","table":"https://gsm657996542xt.table.core.windows.net/","file":"https://gsm657996542xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm860356163xt","name":"gsm860356163xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.7072672Z","primaryEndpoints":{"blob":"https://gsm860356163xt.blob.core.windows.net/","queue":"https://gsm860356163xt.queue.core.windows.net/","table":"https://gsm860356163xt.table.core.windows.net/","file":"https://gsm860356163xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm898591314xt","name":"gsm898591314xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.4349606Z","primaryEndpoints":{"blob":"https://gsm898591314xt.blob.core.windows.net/","queue":"https://gsm898591314xt.queue.core.windows.net/","table":"https://gsm898591314xt.table.core.windows.net/","file":"https://gsm898591314xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm918600515xt","name":"gsm918600515xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.0755113Z","primaryEndpoints":{"blob":"https://gsm918600515xt.blob.core.windows.net/","queue":"https://gsm918600515xt.queue.core.windows.net/","table":"https://gsm918600515xt.table.core.windows.net/","file":"https://gsm918600515xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HrpAuthMetadataEndpoint/providers/Microsoft.Storage/storageAccounts/hrpauthmetadata9077","name":"hrpauthmetadata9077","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-22T07:02:50.9479282Z","primaryEndpoints":{"blob":"https://hrpauthmetadata9077.blob.core.windows.net/","queue":"https://hrpauthmetadata9077.queue.core.windows.net/","table":"https://hrpauthmetadata9077.table.core.windows.net/","file":"https://hrpauthmetadata9077.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hrpci/providers/Microsoft.Storage/storageAccounts/hrpci","name":"hrpci","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-10T19:52:39.6404170Z","primaryEndpoints":{"dfs":"https://hrpci.dfs.core.windows.net/","web":"https://hrpci.z19.web.core.windows.net/","blob":"https://hrpci.blob.core.windows.net/","queue":"https://hrpci.queue.core.windows.net/","table":"https://hrpci.table.core.windows.net/","file":"https://hrpci.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hrpci-secondary.dfs.core.windows.net/","web":"https://hrpci-secondary.z19.web.core.windows.net/","blob":"https://hrpci-secondary.blob.core.windows.net/","queue":"https://hrpci-secondary.queue.core.windows.net/","table":"https://hrpci-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jize-no-fly/providers/Microsoft.Storage/storageAccounts/jizenofly93b5","name":"jizenofly93b5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-13T23:03:31.4759537Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-13T23:03:31.4759537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-13T23:03:31.3821988Z","primaryEndpoints":{"blob":"https://jizenofly93b5.blob.core.windows.net/","queue":"https://jizenofly93b5.queue.core.windows.net/","table":"https://jizenofly93b5.table.core.windows.net/","file":"https://jizenofly93b5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadmcicus/providers/Microsoft.Storage/storageAccounts/msadmcicusdiag234","name":"msadmcicusdiag234","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-23T21:02:21.4925713Z","primaryEndpoints":{"blob":"https://msadmcicusdiag234.blob.core.windows.net/","queue":"https://msadmcicusdiag234.queue.core.windows.net/","table":"https://msadmcicusdiag234.table.core.windows.net/","file":"https://msadmcicusdiag234.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag710","name":"msadmdiag710","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-03T21:23:22.4814586Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-03T21:23:22.4814586Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-03T21:23:22.3876357Z","primaryEndpoints":{"blob":"https://msadmdiag710.blob.core.windows.net/","queue":"https://msadmdiag710.queue.core.windows.net/","table":"https://msadmdiag710.table.core.windows.net/","file":"https://msadmdiag710.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSTestStg/providers/Microsoft.Storage/storageAccounts/msteststoragecdp","name":"msteststoragecdp","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-11-30T20:03:35.2024915Z","primaryEndpoints":{"dfs":"https://msteststoragecdp.dfs.core.windows.net/","web":"https://msteststoragecdp.z19.web.core.windows.net/","blob":"https://msteststoragecdp.blob.core.windows.net/","queue":"https://msteststoragecdp.queue.core.windows.net/","table":"https://msteststoragecdp.table.core.windows.net/","file":"https://msteststoragecdp.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://msteststoragecdp-secondary.dfs.core.windows.net/","web":"https://msteststoragecdp-secondary.z19.web.core.windows.net/","blob":"https://msteststoragecdp-secondary.blob.core.windows.net/","queue":"https://msteststoragecdp-secondary.queue.core.windows.net/","table":"https://msteststoragecdp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-web-centralus/providers/Microsoft.Storage/storageAccounts/n5hoj66ysgio4functions","name":"n5hoj66ysgio4functions","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-16T20:58:45.5315876Z","primaryEndpoints":{"blob":"https://n5hoj66ysgio4functions.blob.core.windows.net/","queue":"https://n5hoj66ysgio4functions.queue.core.windows.net/","table":"https://n5hoj66ysgio4functions.table.core.windows.net/","file":"https://n5hoj66ysgio4functions.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NoFlyExtTest/providers/Microsoft.Storage/storageAccounts/noflyexttest","name":"noflyexttest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-21T01:19:04.8230969Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-21T01:19:04.8230969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-21T01:19:04.7605740Z","primaryEndpoints":{"blob":"https://noflyexttest.blob.core.windows.net/","queue":"https://noflyexttest.queue.core.windows.net/","table":"https://noflyexttest.table.core.windows.net/","file":"https://noflyexttest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RestHealthDevTest/providers/Microsoft.Storage/storageAccounts/resthealthdevte9b75","name":"resthealthdevte9b75","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:45:52.6434003Z","primaryEndpoints":{"blob":"https://resthealthdevte9b75.blob.core.windows.net/","queue":"https://resthealthdevte9b75.queue.core.windows.net/","table":"https://resthealthdevte9b75.table.core.windows.net/","file":"https://resthealthdevte9b75.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthfailuretest/providers/Microsoft.Storage/storageAccounts/resthealthfailu94f2","name":"resthealthfailu94f2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:41:08.9283097Z","primaryEndpoints":{"blob":"https://resthealthfailu94f2.blob.core.windows.net/","queue":"https://resthealthfailu94f2.queue.core.windows.net/","table":"https://resthealthfailu94f2.table.core.windows.net/","file":"https://resthealthfailu94f2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RestHealthPolicyTest/providers/Microsoft.Storage/storageAccounts/resthealthpolicytest","name":"resthealthpolicytest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-23T22:05:03.8748503Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-23T22:05:03.8748503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-23T22:05:03.8123490Z","primaryEndpoints":{"blob":"https://resthealthpolicytest.blob.core.windows.net/","queue":"https://resthealthpolicytest.queue.core.windows.net/","table":"https://resthealthpolicytest.table.core.windows.net/","file":"https://resthealthpolicytest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthtestendpoint/providers/Microsoft.Storage/storageAccounts/resthealthtest","name":"resthealthtest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-10-18T19:13:44.6029902Z","primaryEndpoints":{"blob":"https://resthealthtest.blob.core.windows.net/","queue":"https://resthealthtest.queue.core.windows.net/","table":"https://resthealthtest.table.core.windows.net/","file":"https://resthealthtest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/shellpublishcicus","name":"shellpublishcicus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:11:08.2096556Z","primaryEndpoints":{"blob":"https://shellpublishcicus.blob.core.windows.net/","queue":"https://shellpublishcicus.queue.core.windows.net/","table":"https://shellpublishcicus.table.core.windows.net/","file":"https://shellpublishcicus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestHiPriPolicy/providers/Microsoft.Storage/storageAccounts/testhipripolicy","name":"testhipripolicy","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-25T21:46:58.6875847Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-25T21:46:58.6875847Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-25T21:46:58.5936517Z","primaryEndpoints":{"dfs":"https://testhipripolicy.dfs.core.windows.net/","web":"https://testhipripolicy.z19.web.core.windows.net/","blob":"https://testhipripolicy.blob.core.windows.net/","queue":"https://testhipripolicy.queue.core.windows.net/","table":"https://testhipripolicy.table.core.windows.net/","file":"https://testhipripolicy.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testhipripolicy-secondary.dfs.core.windows.net/","web":"https://testhipripolicy-secondary.z19.web.core.windows.net/","blob":"https://testhipripolicy-secondary.blob.core.windows.net/","queue":"https://testhipripolicy-secondary.queue.core.windows.net/","table":"https://testhipripolicy-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/poolmanager/providers/Microsoft.Storage/storageAccounts/umsakxp4zlxfrx1sh53f","name":"umsakxp4zlxfrx1sh53f","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T04:45:51.6636536Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T04:45:51.6636536Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T04:45:51.5698732Z","primaryEndpoints":{"blob":"https://umsakxp4zlxfrx1sh53f.blob.core.windows.net/","queue":"https://umsakxp4zlxfrx1sh53f.queue.core.windows.net/","table":"https://umsakxp4zlxfrx1sh53f.table.core.windows.net/","file":"https://umsakxp4zlxfrx1sh53f.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://umsakxp4zlxfrx1sh53f-secondary.blob.core.windows.net/","queue":"https://umsakxp4zlxfrx1sh53f-secondary.queue.core.windows.net/","table":"https://umsakxp4zlxfrx1sh53f-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcineu1","name":"admcineu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:22.2583722Z","primaryEndpoints":{"dfs":"https://admcineu1.dfs.core.windows.net/","web":"https://admcineu1.z16.web.core.windows.net/","blob":"https://admcineu1.blob.core.windows.net/","queue":"https://admcineu1.queue.core.windows.net/","table":"https://admcineu1.table.core.windows.net/","file":"https://admcineu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcineu1-secondary.dfs.core.windows.net/","web":"https://admcineu1-secondary.z16.web.core.windows.net/","blob":"https://admcineu1-secondary.blob.core.windows.net/","queue":"https://admcineu1-secondary.queue.core.windows.net/","table":"https://admcineu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeneu1","name":"admppeneu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:17.9428692Z","primaryEndpoints":{"dfs":"https://admppeneu1.dfs.core.windows.net/","web":"https://admppeneu1.z16.web.core.windows.net/","blob":"https://admppeneu1.blob.core.windows.net/","queue":"https://admppeneu1.queue.core.windows.net/","table":"https://admppeneu1.table.core.windows.net/","file":"https://admppeneu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeneu1-secondary.dfs.core.windows.net/","web":"https://admppeneu1-secondary.z16.web.core.windows.net/","blob":"https://admppeneu1-secondary.blob.core.windows.net/","queue":"https://admppeneu1-secondary.queue.core.windows.net/","table":"https://admppeneu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArfifactManifestWithSGRCUS/providers/Microsoft.Storage/storageAccounts/ftmanifestresswtamrak","name":"ftmanifestresswtamrak","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-12T22:59:56.1428981Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-12T22:59:56.1428981Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-12T22:59:56.0648037Z","primaryEndpoints":{"dfs":"https://ftmanifestresswtamrak.dfs.core.windows.net/","web":"https://ftmanifestresswtamrak.z16.web.core.windows.net/","blob":"https://ftmanifestresswtamrak.blob.core.windows.net/","queue":"https://ftmanifestresswtamrak.queue.core.windows.net/","table":"https://ftmanifestresswtamrak.table.core.windows.net/","file":"https://ftmanifestresswtamrak.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ftmanifestresswtamrak-secondary.dfs.core.windows.net/","web":"https://ftmanifestresswtamrak-secondary.z16.web.core.windows.net/","blob":"https://ftmanifestresswtamrak-secondary.blob.core.windows.net/","queue":"https://ftmanifestresswtamrak-secondary.queue.core.windows.net/","table":"https://ftmanifestresswtamrak-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag","name":"msadmdiag","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-11T19:39:03.2334811Z","primaryEndpoints":{"blob":"https://msadmdiag.blob.core.windows.net/","queue":"https://msadmdiag.queue.core.windows.net/","table":"https://msadmdiag.table.core.windows.net/","file":"https://msadmdiag.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latestvoting-rg/providers/Microsoft.Storage/storageAccounts/izvrpo24qper62","name":"izvrpo24qper62","type":"Microsoft.Storage/storageAccounts","location":"southindia","tags":{"resourceType":"Service + Fabric","clusterName":"mylatestcluster"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4706778Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4706778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-11T21:56:03.4082240Z","primaryEndpoints":{"blob":"https://izvrpo24qper62.blob.core.windows.net/","queue":"https://izvrpo24qper62.queue.core.windows.net/","table":"https://izvrpo24qper62.table.core.windows.net/","file":"https://izvrpo24qper62.file.core.windows.net/"},"primaryLocation":"southindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latestvoting-rg/providers/Microsoft.Storage/storageAccounts/wadizvrpo24qper63","name":"wadizvrpo24qper63","type":"Microsoft.Storage/storageAccounts","location":"southindia","tags":{"resourceType":"Service + Fabric","clusterName":"mylatestcluster"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4550763Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4550763Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-11T21:56:03.3925946Z","primaryEndpoints":{"blob":"https://wadizvrpo24qper63.blob.core.windows.net/","queue":"https://wadizvrpo24qper63.queue.core.windows.net/","table":"https://wadizvrpo24qper63.table.core.windows.net/","file":"https://wadizvrpo24qper63.file.core.windows.net/"},"primaryLocation":"southindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sajivar-db/providers/Microsoft.Storage/storageAccounts/sajivartest3","name":"sajivartest3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T17:16:50.8419730Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T17:16:50.8419730Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-04T17:16:50.7325708Z","primaryEndpoints":{"dfs":"https://sajivartest3.dfs.core.windows.net/","web":"https://sajivartest3.z5.web.core.windows.net/","blob":"https://sajivartest3.blob.core.windows.net/","queue":"https://sajivartest3.queue.core.windows.net/","table":"https://sajivartest3.table.core.windows.net/","file":"https://sajivartest3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sajivartest3-secondary.dfs.core.windows.net/","web":"https://sajivartest3-secondary.z5.web.core.windows.net/","blob":"https://sajivartest3-secondary.blob.core.windows.net/","queue":"https://sajivartest3-secondary.queue.core.windows.net/","table":"https://sajivartest3-secondary.table.core.windows.net/"}}}]}' headers: cache-control: - no-cache content-length: - - '91927' + - '130074' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:19 GMT + - Wed, 15 Jan 2020 00:13:22 GMT expires: - '-1' pragma: @@ -927,13 +724,16 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 4eec1b2a-5c22-4870-94e6-99fcc6ce5dfe - - 215a027c-7746-45e7-b83c-eae5f617a9a7 - - 5268337e-c101-4cb7-9430-dcbb0dbf15a0 - - 03a44f1b-d876-40d8-ba78-5c0d796241c1 - - cfa7f267-9b34-4a6a-ab21-a51731749033 - - 5973bc49-5d63-44f5-96fd-3e1842522191 - - ce964356-8fc0-4652-acc7-1152f355d24d + - 3235776c-a1e4-4406-bb4d-4481845e33a0 + - 8c5d2875-298c-4ad5-91a5-bbfd9b790c82 + - c35a5451-3e8f-47d4-801f-3b2c7fb8c038 + - c3cf5a89-5a92-4004-b0c0-70f230f1e8de + - 36aa0558-79df-4cff-a56b-0a9ebb347569 + - f1cc333d-b2f1-4151-ab7b-f3ebc4479caf + - 8683c73d-1a65-4656-b6c0-e3626cabf6ed + - 7c9e18ba-8663-4b32-9b90-e8d1bdb5b499 + - d84bd6d4-e088-41ad-b4a8-e5d9559f8f47 + - de93c15f-679a-43c8-a08d-5bb58139a852 status: code: 200 message: OK @@ -953,12 +753,12 @@ interactions: ParameterSetName: - -n --account-name --permissions --start --expiry -o User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002/listKeys?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -970,7 +770,7 @@ interactions: content-type: - application/json date: - - Tue, 16 Apr 2019 21:32:19 GMT + - Wed, 15 Jan 2020 00:13:23 GMT expires: - '-1' pragma: @@ -993,7 +793,7 @@ interactions: - request: body: 'b''{"location": "centralus", "properties": {"sourceType": "AzureStorage", "artifactRoot": "artifactroot", "authentication": {"type": "Sas", "properties": - {"sasUri": "https://cliadm000002.blob.core.windows.net/artifacts?st=2019-04-16T20%3A32Z&se=2019-04-17T07%3A32Z&sp=rl&sv=2018-03-28&sr=c&sig=BzzlEZZERcDWbzQMPfhMQ5tZlrFgw%2BPn8ABo194CcfM%3D"}}}}''' + {"sasUri": "https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A13Z&se=2020-01-15T10%3A13Z&sp=rl&sv=2018-11-09&sr=c&sig=0oFRisE9AgGIR9VxARyy%2BHkOyy7hKDb3rkel0y46LF0%3D"}}}}''' headers: Accept: - application/json @@ -1010,15 +810,15 @@ interactions: ParameterSetName: - -g -n -l --sas-uri --artifact-root User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2019-11-01-preview response: body: - string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2019-04-16T20%3A32Z&se=2019-04-17T07%3A32Z&sp=rl&sv=2018-03-28&sr=c&sig=BzzlEZZERcDWbzQMPfhMQ5tZlrFgw%2BPn8ABo194CcfM%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","name":"cliadm000001ArtifactSource","location":"centralus"}' + string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A13Z&se=2020-01-15T10%3A13Z&sp=rl&sv=2018-11-09&sr=c&sig=0oFRisE9AgGIR9VxARyy%2BHkOyy7hKDb3rkel0y46LF0%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","name":"cliadm000001ArtifactSource","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1027,7 +827,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:22 GMT + - Wed, 15 Jan 2020 00:13:28 GMT expires: - '-1' pragma: @@ -1057,15 +857,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2019-11-01-preview response: body: - string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2019-04-16T20%3A32Z&se=2019-04-17T07%3A32Z&sp=rl&sv=2018-03-28&sr=c&sig=BzzlEZZERcDWbzQMPfhMQ5tZlrFgw%2BPn8ABo194CcfM%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","name":"cliadm000001ArtifactSource","location":"centralus"}' + string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A13Z&se=2020-01-15T10%3A13Z&sp=rl&sv=2018-11-09&sr=c&sig=0oFRisE9AgGIR9VxARyy%2BHkOyy7hKDb3rkel0y46LF0%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","name":"cliadm000001ArtifactSource","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1074,7 +874,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:23 GMT + - Wed, 15 Jan 2020 00:13:29 GMT expires: - '-1' pragma: @@ -1110,68 +910,15 @@ interactions: ParameterSetName: - -g -n -l --artifact-source User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"BadGatewayConnection","message":"The network connectivity - issue encountered for ''Microsoft.DeploymentManager''; cannot fulfill the - request."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '159' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:32:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - service - status: - code: 502 - message: Bad Gateway -- request: - body: 'b''{"location": "centralus", "properties": {"artifactSourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource"}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - deploymentmanager service-topology create - Connection: - - keep-alive - Content-Length: - - '225' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -l --artifact-source - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2019-11-01-preview response: body: - string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/servicetopologies","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' + string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1180,7 +927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:26 GMT + - Wed, 15 Jan 2020 00:13:31 GMT expires: - '-1' pragma: @@ -1192,7 +939,7 @@ interactions: x-frame-options: - DENY x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1210,15 +957,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2019-11-01-preview response: body: - string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource"},"type":"Microsoft.DeploymentManager/servicetopologies","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' + string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource"},"type":"Microsoft.DeploymentManager/serviceTopologies","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1227,7 +974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:27 GMT + - Wed, 15 Jan 2020 00:13:32 GMT expires: - '-1' pragma: @@ -1264,15 +1011,15 @@ interactions: ParameterSetName: - -g --service-topology-name -n -l --target-location --target-subscription-id User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service","name":"cliadm000001Service","location":"centralus"}' + string: '{"properties":{"targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service","name":"cliadm000001Service","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1281,7 +1028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:30 GMT + - Wed, 15 Jan 2020 00:13:36 GMT expires: - '-1' pragma: @@ -1318,18 +1065,18 @@ interactions: - -g --service-topology-name --service-name -n -l --target-resource-group --deployment-mode --parameters-path --template-path User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Running"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Running"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/8fbfb1bd-a4d3-4b29-b18e-254da0f94ab5?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/48aa3a6a-2761-49ad-97de-4e0e295a07d5?api-version=2019-11-01-preview cache-control: - no-store, no-cache content-length: @@ -1337,11 +1084,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:32:34 GMT + - Wed, 15 Jan 2020 00:13:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/8fbfb1bd-a4d3-4b29-b18e-254da0f94ab5?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/48aa3a6a-2761-49ad-97de-4e0e295a07d5?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -1370,13 +1117,13 @@ interactions: - -g --service-topology-name --service-name -n -l --target-resource-group --deployment-mode --parameters-path --template-path User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/8fbfb1bd-a4d3-4b29-b18e-254da0f94ab5?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/48aa3a6a-2761-49ad-97de-4e0e295a07d5?api-version=2019-11-01-preview response: body: - string: '{"status":"Succeeded","startTime":"2019-04-16T21:32:33.2480000Z","endTime":"2019-04-16T21:32:39.6210000Z"}' + string: '{"status":"Succeeded","startTime":"2020-01-15T00:13:40.0730000Z","endTime":"2020-01-15T00:13:42.9490000Z"}' headers: cache-control: - no-store, no-cache @@ -1385,11 +1132,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:33:28 GMT + - Wed, 15 Jan 2020 00:14:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -1420,13 +1167,13 @@ interactions: - -g --service-topology-name --service-name -n -l --target-resource-group --deployment-mode --parameters-path --template-path User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1435,7 +1182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:33:29 GMT + - Wed, 15 Jan 2020 00:14:25 GMT expires: - '-1' pragma: @@ -1467,15 +1214,15 @@ interactions: ParameterSetName: - -g --service-topology-name --service-name -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1484,7 +1231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:33:30 GMT + - Wed, 15 Jan 2020 00:14:26 GMT expires: - '-1' pragma: @@ -1523,18 +1270,18 @@ interactions: - -g --service-topology-name --service-name -n -l --target-resource-group --deployment-mode --parameters-path --template-path User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage_invalid.parameters.json"},"provisioningState":"Running"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","name":"cliadm000001InvalidServiceUnit","location":"centralus"}' + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage_invalid.parameters.json"},"provisioningState":"Running"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","name":"cliadm000001InvalidServiceUnit","location":"centralus"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/50bc5014-8d2b-4bf7-9949-c9e593762a6b?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/efe9f036-1f1e-4eb3-aa55-92522d3c3725?api-version=2019-11-01-preview cache-control: - no-store, no-cache content-length: @@ -1542,11 +1289,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:33:33 GMT + - Wed, 15 Jan 2020 00:14:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/50bc5014-8d2b-4bf7-9949-c9e593762a6b?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/efe9f036-1f1e-4eb3-aa55-92522d3c3725?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -1556,7 +1303,7 @@ interactions: x-frame-options: - DENY x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -1575,13 +1322,13 @@ interactions: - -g --service-topology-name --service-name -n -l --target-resource-group --deployment-mode --parameters-path --template-path User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/50bc5014-8d2b-4bf7-9949-c9e593762a6b?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/efe9f036-1f1e-4eb3-aa55-92522d3c3725?api-version=2019-11-01-preview response: body: - string: '{"status":"Succeeded","startTime":"2019-04-16T21:33:33.0320000Z","endTime":"2019-04-16T21:33:36.1090000Z"}' + string: '{"status":"Succeeded","startTime":"2020-01-15T00:14:31.0440000Z","endTime":"2020-01-15T00:14:34.4570000Z"}' headers: cache-control: - no-store, no-cache @@ -1590,11 +1337,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:16 GMT + - Wed, 15 Jan 2020 00:15:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -1625,13 +1372,13 @@ interactions: - -g --service-topology-name --service-name -n -l --target-resource-group --deployment-mode --parameters-path --template-path User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage_invalid.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","name":"cliadm000001InvalidServiceUnit","location":"centralus"}' + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage_invalid.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","name":"cliadm000001InvalidServiceUnit","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1640,7 +1387,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:18 GMT + - Wed, 15 Jan 2020 00:15:23 GMT expires: - '-1' pragma: @@ -1672,15 +1419,15 @@ interactions: ParameterSetName: - -g --service-topology-name --service-name -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage_invalid.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","name":"cliadm000001InvalidServiceUnit","location":"centralus"}' + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage_invalid.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","name":"cliadm000001InvalidServiceUnit","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1689,7 +1436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:19 GMT + - Wed, 15 Jan 2020 00:15:24 GMT expires: - '-1' pragma: @@ -1726,15 +1473,15 @@ interactions: ParameterSetName: - -g -l -n --duration User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT5M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' + string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT5M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1743,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:22 GMT + - Wed, 15 Jan 2020 00:15:29 GMT expires: - '-1' pragma: @@ -1773,15 +1520,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT5M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' + string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT5M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -1790,7 +1537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:23 GMT + - Wed, 15 Jan 2020 00:15:30 GMT expires: - '-1' pragma: @@ -1834,26 +1581,26 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout","name":"createrollout","properties":{"templateHash":"5645993577909135422","mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:34:28.5457376Z","duration":"PT0.6827088S","correlationId":"5a37d33a-2707-43da-91b6-77364c4cefb8","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout","name":"createrollout","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6941921738675183305","mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-15T00:15:32.5752934Z","duration":"PT0.842529S","correlationId":"311389ab-ad61-4361-b7ca-3fd3f3ad1e11","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout/operationStatuses/08586461564176145737?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout/operationStatuses/08586225595537448398?api-version=2019-07-01 cache-control: - no-cache content-length: - - '543' + - '583' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:28 GMT + - Wed, 15 Jan 2020 00:15:32 GMT expires: - '-1' pragma: @@ -1881,10 +1628,10 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461564176145737?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586225595537448398?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1896,7 +1643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:34:58 GMT + - Wed, 15 Jan 2020 00:16:02 GMT expires: - '-1' pragma: @@ -1924,10 +1671,10 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461564176145737?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586225595537448398?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -1939,7 +1686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:35:28 GMT + - Wed, 15 Jan 2020 00:16:33 GMT expires: - '-1' pragma: @@ -1967,10 +1714,10 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461564176145737?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586225595537448398?api-version=2019-07-01 response: body: string: '{"status":"Succeeded"}' @@ -1982,7 +1729,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:35:59 GMT + - Wed, 15 Jan 2020 00:17:03 GMT expires: - '-1' pragma: @@ -2010,22 +1757,22 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout","name":"createrollout","properties":{"templateHash":"5645993577909135422","mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:35:35.4653173Z","duration":"PT1M7.6022885S","correlationId":"5a37d33a-2707-43da-91b6-77364c4cefb8","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout","name":"createrollout","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6941921738675183305","mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-15T00:16:40.4754334Z","duration":"PT1M8.742669S","correlationId":"311389ab-ad61-4361-b7ca-3fd3f3ad1e11","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout"}]}}' headers: cache-control: - no-cache content-length: - - '722' + - '762' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:35:59 GMT + - Wed, 15 Jan 2020 00:17:03 GMT expires: - '-1' pragma: @@ -2053,16 +1800,16 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2019-11-01-preview response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Running","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2019-04-16T21:34:38.022Z","lastUpdatedTime":"2019-04-16T21:34:38.022Z"},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001ServiceUnit","targetResourceGroup":"cliadm000001Service","artifacts":{},"steps":[{"name":"Wait/cliadm000001WaitStep.PreDeploy","stepGroup":"PilotRegion","status":"Running","operationInfo":{"deploymentName":"","startTime":"2019-04-16T21:34:42.225Z","lastUpdatedTime":"2019-04-16T21:34:42.225Z"},"resourceOperations":[],"messages":[{"timestamp":"2019-04-16T21:34:42.1788468Z","message":"Wait - ending at ''04/16/2019 21:39:42 UTC'', with ''5 minutes'' remaining."}]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","preDeploymentSteps":[{"stepId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep"}],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout","name":"cliadm000001Rollout","location":"Central + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Running","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2020-01-15T00:15:57.954Z","lastUpdatedTime":"2020-01-15T00:15:57.954Z"},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001ServiceUnit","targetResourceGroup":"cliadm000001Service","artifacts":{},"steps":[{"name":"Wait/cliadm000001WaitStep.PreDeploy","stepGroup":"PilotRegion","status":"Running","operationInfo":{"deploymentName":"","startTime":"2020-01-15T00:16:02.099Z","lastUpdatedTime":"2020-01-15T00:16:02.099Z"},"resourceOperations":[],"messages":[{"timestamp":"2020-01-15T00:16:02.0999449Z","message":"Wait + ending at ''01/15/2020 00:21:02 UTC'', with ''5 minutes'' remaining."}]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","preDeploymentSteps":[{"stepId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep"}],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout","name":"cliadm000001Rollout","location":"Central US"}' headers: cache-control: @@ -2072,11 +1819,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:36:00 GMT + - Wed, 15 Jan 2020 00:17:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -2108,15 +1855,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout/cancel?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout/cancel?api-version=2019-11-01-preview response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceling","operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2019-04-16T21:34:38.022Z","lastUpdatedTime":"2019-04-16T21:34:38.022Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","preDeploymentSteps":[{"stepId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep"}],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout","name":"cliadm000001Rollout","location":"Central + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceling","operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2020-01-15T00:15:57.954Z","lastUpdatedTime":"2020-01-15T00:15:57.954Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","preDeploymentSteps":[{"stepId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep"}],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout","name":"cliadm000001Rollout","location":"Central US"}' headers: cache-control: @@ -2126,11 +1873,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:36:03 GMT + - Wed, 15 Jan 2020 00:17:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -2162,29 +1909,29 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2019-11-01-preview response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceled","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2019-04-16T21:34:38.022Z","endTime":"2019-04-16T21:36:46.695Z","lastUpdatedTime":"2019-04-16T21:36:46.695Z"},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001ServiceUnit","targetResourceGroup":"cliadm000001Service","artifacts":{},"steps":[{"name":"Wait/cliadm000001WaitStep.PreDeploy","stepGroup":"PilotRegion","status":"Canceled","operationInfo":{"deploymentName":"","startTime":"2019-04-16T21:34:42.225Z","endTime":"2019-04-16T21:36:43.078Z","lastUpdatedTime":"2019-04-16T21:36:43.078Z"},"resourceOperations":[],"messages":[]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","preDeploymentSteps":[{"stepId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep"}],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout","name":"cliadm000001Rollout","location":"Central + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceled","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2020-01-15T00:15:57.954Z","endTime":"2020-01-15T00:18:06.924Z","lastUpdatedTime":"2020-01-15T00:18:06.924Z"},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001ServiceUnit","targetResourceGroup":"cliadm000001Service","artifacts":{},"steps":[{"name":"Wait/cliadm000001WaitStep.PreDeploy","stepGroup":"PilotRegion","status":"Canceled","operationInfo":{"deploymentName":"","startTime":"2020-01-15T00:16:02.099Z","endTime":"2020-01-15T00:18:04.24Z","lastUpdatedTime":"2020-01-15T00:18:04.24Z"},"resourceOperations":[],"messages":[]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","preDeploymentSteps":[{"stepId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep"}],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout","name":"cliadm000001Rollout","location":"Central US"}' headers: cache-control: - no-store, no-cache content-length: - - '2241' + - '2239' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:05 GMT + - Wed, 15 Jan 2020 00:19:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -2225,26 +1972,26 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout_failurerollout","name":"createrollout_failurerollout","properties":{"templateHash":"15103653253935797369","mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-04-16T21:38:08.5509954Z","duration":"PT0.9399475S","correlationId":"6e99b46c-d432-4ff2-bd69-5aef2911945f","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout_failurerollout","name":"createrollout_failurerollout","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8822385628784706557","mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-01-15T00:19:28.3703834Z","duration":"PT0.8470688S","correlationId":"a238f646-1fe2-44ba-819a-6e1724941f6b","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout_failurerollout/operationStatuses/08586461561978665590?api-version=2019-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout_failurerollout/operationStatuses/08586225593179542894?api-version=2019-07-01 cache-control: - no-cache content-length: - - '574' + - '614' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:08 GMT + - Wed, 15 Jan 2020 00:19:28 GMT expires: - '-1' pragma: @@ -2272,10 +2019,10 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561978665590?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586225593179542894?api-version=2019-07-01 response: body: string: '{"status":"Running"}' @@ -2287,7 +2034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:38:38 GMT + - Wed, 15 Jan 2020 00:19:58 GMT expires: - '-1' pragma: @@ -2315,22 +2062,22 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586461561978665590?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586225593179542894?api-version=2019-07-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:09 GMT + - Wed, 15 Jan 2020 00:20:29 GMT expires: - '-1' pragma: @@ -2358,22 +2105,22 @@ interactions: ParameterSetName: - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586225593179542894?api-version=2019-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout_failurerollout","name":"createrollout_failurerollout","properties":{"templateHash":"15103653253935797369","mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-04-16T21:38:56.1533016Z","duration":"PT48.5422537S","correlationId":"6e99b46c-d432-4ff2-bd69-5aef2911945f","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout"}]}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '759' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:09 GMT + - Wed, 15 Jan 2020 00:20:58 GMT expires: - '-1' pragma: @@ -2395,55 +2142,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager rollout show + - group deployment create Connection: - keep-alive ParameterSetName: - - -g -n + - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586225593179542894?api-version=2019-07-01 response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Failed","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2019-04-16T21:38:19.604Z","endTime":"2019-04-16T21:38:32.22Z","lastUpdatedTime":"2019-04-16T21:38:32.22Z","error":{"message":"Rollout - failed. See individual resource''s ''StatusMessage'' property for specific - error information. "}},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001InvalidServiceUnit","targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{},"steps":[{"name":"Deploy","stepGroup":"PilotRegion","status":"Failed","operationInfo":{"deploymentName":"632584D821074E86A454341D4E4E22090cliadm000001InvalidServiceUnit","startTime":"2019-04-16T21:38:30.805Z","endTime":"2019-04-16T21:38:30.805Z","lastUpdatedTime":"2019-04-16T21:38:30.805Z","error":{"code":"ActionExecutionFailed","message":"Error: - Code=InvalidTemplate; Message=Deployment template validation failed: ''The - template resource ''(Invalid_Storage.Account/Name)'' for type ''Microsoft.Storage/storageAccounts'' - at line ''26'' and column ''9'' has incorrect segment lengths. A nested resource - type must have identical number of segments as its resource name. A root resource - type must have segment length one greater than its resource name. Please see - https://aka.ms/arm-template/#resources for usage details.''.\r\n "}},"resourceOperations":[],"messages":[]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central - US"}' + string: '{"status":"Succeeded"}' headers: cache-control: - - no-store, no-cache + - no-cache content-length: - - '2817' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:39:10 GMT + - Wed, 15 Jan 2020 00:21:28 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-frame-options: - - DENY status: code: 200 message: OK @@ -2455,43 +2185,146 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager rollout show + - group deployment create Connection: - keep-alive ParameterSetName: - - -g -n + - -g --template-file User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-resource/6.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2019-07-01 response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Failed","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2019-04-16T21:38:19.604Z","endTime":"2019-04-16T21:38:32.22Z","lastUpdatedTime":"2019-04-16T21:38:32.22Z","error":{"message":"Rollout - failed. See individual resource''s ''StatusMessage'' property for specific - error information. "}},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001InvalidServiceUnit","targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{},"steps":[{"name":"Deploy","stepGroup":"PilotRegion","status":"Failed","operationInfo":{"deploymentName":"632584D821074E86A454341D4E4E22090cliadm000001InvalidServiceUnit","startTime":"2019-04-16T21:38:30.805Z","endTime":"2019-04-16T21:38:30.805Z","lastUpdatedTime":"2019-04-16T21:38:30.805Z","error":{"code":"ActionExecutionFailed","message":"Error: - Code=InvalidTemplate; Message=Deployment template validation failed: ''The - template resource ''(Invalid_Storage.Account/Name)'' for type ''Microsoft.Storage/storageAccounts'' - at line ''26'' and column ''9'' has incorrect segment lengths. A nested resource + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Resources/deployments/createrollout_failurerollout","name":"createrollout_failurerollout","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8822385628784706557","mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-01-15T00:21:03.7095081Z","duration":"PT1M36.1861935S","correlationId":"a238f646-1fe2-44ba-819a-6e1724941f6b","providers":[{"namespace":"Microsoft.DeploymentManager","resourceTypes":[{"resourceType":"rollouts","locations":["centralus"]}]}],"dependencies":[],"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '801' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:21:28 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: + - deploymentmanager rollout show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview + response: + body: + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Failed","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2020-01-15T00:19:55.567Z","endTime":"2020-01-15T00:20:02.138Z","lastUpdatedTime":"2020-01-15T00:20:02.138Z","error":{"message":"Rollout + failed. See individual resource''s ''StatusMessage'' property for specific + error information. "}},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001InvalidServiceUnit","targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{},"steps":[{"name":"Deploy","stepGroup":"PilotRegion","status":"Failed","operationInfo":{"deploymentName":"FCE4C916FD594715AE4E08CC28DC7D2E0cliadm000001InvalidServiceUnit","startTime":"2020-01-15T00:20:00.708Z","endTime":"2020-01-15T00:20:00.708Z","lastUpdatedTime":"2020-01-15T00:20:00.708Z","error":{"code":"ActionExecutionFailed","message":"Error: + Code=InvalidTemplate; Message=Deployment template validation failed: ''The + template resource ''(Invalid_Storage.Account/Name)'' for type ''Microsoft.WindowsAzure.ResourceStack.Frontdoor.Common.Entities.TemplateGenericProperty`1[System.String]'' + at line ''28'' and column ''55'' has incorrect segment lengths. A nested resource + type must have identical number of segments as its resource name. A root resource + type must have segment length one greater than its resource name. Please see + https://aka.ms/arm-template/#resources for usage details.''.\r\n "}},"resourceOperations":[],"messages":[]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central + US"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '2890' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:21:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager rollout show + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview + response: + body: + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Failed","totalRetryAttempts":0,"operationInfo":{"retryAttempt":0,"skipSucceededOnRetry":false,"startTime":"2020-01-15T00:19:55.567Z","endTime":"2020-01-15T00:20:02.138Z","lastUpdatedTime":"2020-01-15T00:20:02.138Z","error":{"message":"Rollout + failed. See individual resource''s ''StatusMessage'' property for specific + error information. "}},"services":[{"name":"cliadm000001Service","targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","serviceUnits":[{"name":"cliadm000001InvalidServiceUnit","targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{},"steps":[{"name":"Deploy","stepGroup":"PilotRegion","status":"Failed","operationInfo":{"deploymentName":"FCE4C916FD594715AE4E08CC28DC7D2E0cliadm000001InvalidServiceUnit","startTime":"2020-01-15T00:20:00.708Z","endTime":"2020-01-15T00:20:00.708Z","lastUpdatedTime":"2020-01-15T00:20:00.708Z","error":{"code":"ActionExecutionFailed","message":"Error: + Code=InvalidTemplate; Message=Deployment template validation failed: ''The + template resource ''(Invalid_Storage.Account/Name)'' for type ''Microsoft.WindowsAzure.ResourceStack.Frontdoor.Common.Entities.TemplateGenericProperty`1[System.String]'' + at line ''28'' and column ''55'' has incorrect segment lengths. A nested resource type must have identical number of segments as its resource name. A root resource type must have segment length one greater than its resource name. Please see - https://aka.ms/arm-template/#resources for usage details.''.\r\n "}},"resourceOperations":[],"messages":[]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central + https://aka.ms/arm-template/#resources for usage details.''.\r\n "}},"resourceOperations":[],"messages":[]}]}]}],"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central US"}' headers: cache-control: - no-store, no-cache content-length: - - '2817' + - '2890' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:11 GMT + - Wed, 15 Jan 2020 00:23:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -2523,15 +2356,15 @@ interactions: ParameterSetName: - -g -n --skip-succeeded --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout/restart?skipSucceeded=true&api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout/restart?skipSucceeded=true&api-version=2019-11-01-preview response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Running","totalRetryAttempts":1,"operationInfo":{"retryAttempt":1,"skipSucceededOnRetry":true,"startTime":"2019-04-16T21:41:14.045Z","lastUpdatedTime":"2019-04-16T21:41:14.045Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Running","totalRetryAttempts":1,"operationInfo":{"retryAttempt":1,"skipSucceededOnRetry":true,"startTime":"2020-01-15T00:23:35.252Z","lastUpdatedTime":"2020-01-15T00:23:35.252Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central US"}' headers: cache-control: @@ -2541,11 +2374,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:15 GMT + - Wed, 15 Jan 2020 00:23:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?skipSucceeded=true&api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?skipSucceeded=true&api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -2579,15 +2412,15 @@ interactions: ParameterSetName: - -g -n --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout/cancel?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout/cancel?api-version=2019-11-01-preview response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceling","operationInfo":{"retryAttempt":1,"skipSucceededOnRetry":true,"startTime":"2019-04-16T21:41:14.045Z","lastUpdatedTime":"2019-04-16T21:41:14.045Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceling","operationInfo":{"retryAttempt":1,"skipSucceededOnRetry":true,"startTime":"2020-01-15T00:23:35.252Z","lastUpdatedTime":"2020-01-15T00:23:35.252Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central US"}' headers: cache-control: @@ -2597,11 +2430,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:41:17 GMT + - Wed, 15 Jan 2020 00:23:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -2633,15 +2466,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview response: body: - string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceled","totalRetryAttempts":1,"operationInfo":{"retryAttempt":1,"skipSucceededOnRetry":true,"startTime":"2019-04-16T21:41:14.045Z","endTime":"2019-04-16T21:41:27.066Z","lastUpdatedTime":"2019-04-16T21:41:27.066Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central + string: '{"identity":{"type":"UserAssigned","identityIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/cliadm000001Identity"]},"properties":{"status":"Canceled","totalRetryAttempts":1,"operationInfo":{"retryAttempt":1,"skipSucceededOnRetry":true,"startTime":"2020-01-15T00:23:35.252Z","endTime":"2020-01-15T00:23:44.736Z","lastUpdatedTime":"2020-01-15T00:23:44.736Z"},"buildVersion":"1.0.0","targetServiceTopologyId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","stepGroups":[{"name":"PilotRegion","deploymentTargetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","preDeploymentSteps":[],"postDeploymentSteps":[],"dependsOnStepGroups":[]}],"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/rollouts","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout","name":"cliadm000001InvalidRollout","location":"Central US"}' headers: cache-control: @@ -2651,11 +2484,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:19 GMT + - Wed, 15 Jan 2020 00:25:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview pragma: - no-cache strict-transport-security: @@ -2687,12 +2520,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview response: body: string: 'null' @@ -2704,7 +2537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:20 GMT + - Wed, 15 Jan 2020 00:25:55 GMT expires: - '-1' pragma: @@ -2740,12 +2573,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2019-11-01-preview response: body: string: 'null' @@ -2757,7 +2590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:23 GMT + - Wed, 15 Jan 2020 00:25:59 GMT expires: - '-1' pragma: @@ -2791,12 +2624,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout?api-version=2019-11-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/rollouts/cliadm000001InvalidRollout'' @@ -2809,7 +2642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:23 GMT + - Wed, 15 Jan 2020 00:25:59 GMT expires: - '-1' pragma: @@ -2837,12 +2670,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/rollouts/cliadm000001Rollout?api-version=2019-11-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/rollouts/cliadm000001Rollout'' @@ -2855,7 +2688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:24 GMT + - Wed, 15 Jan 2020 00:26:00 GMT expires: - '-1' pragma: @@ -2883,15 +2716,15 @@ interactions: ParameterSetName: - -g -n --duration User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT5M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' + string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT5M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -2900,7 +2733,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:25 GMT + - Wed, 15 Jan 2020 00:26:02 GMT expires: - '-1' pragma: @@ -2937,15 +2770,15 @@ interactions: ParameterSetName: - -g -n --duration User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT10M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' + string: '{"properties":{"stepType":"Wait","attributes":{"duration":"PT10M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -2954,7 +2787,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:27 GMT + - Wed, 15 Jan 2020 00:26:22 GMT expires: - '-1' pragma: @@ -2971,58 +2804,66 @@ interactions: code: 201 message: Created - request: - body: null + body: '{"location": "centralus", "properties": {"stepType": "HealthCheck", "attributes": + {"waitDuration": "PT10M", "maxElasticDuration": "PT20M", "healthyStateDuration": + "PT60M", "type": "REST", "properties": {"healthChecks": [{"name": "RestHealthQuery1", + "request": {"method": "GET", "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus", + "authentication": {"type": "ApiKey", "name": "Code", "in": "Query", "value": + "AuthValue=="}}, "response": {"successStatusCodes": ["OK"], "regex": {"matches": + ["resthc1", "healthy"], "matchQuantifier": "All"}}}, {"name": "RestHealthQuery2", + "request": {"method": "GET", "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus", + "authentication": {"type": "ApiKey", "name": "x-functions-key", "in": "Header", + "value": "AuthValue=="}}, "response": {"successStatusCodes": ["OK"], "regex": + {"matches": ["resthc1", "healthy"], "matchQuantifier": "All"}}}]}}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager step delete + - deploymentmanager step create Connection: - keep-alive Content-Length: - - '0' + - '967' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n + - -g --step User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2018-09-01-preview + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep?api-version=2019-11-01-preview response: body: - string: 'null' + string: '{"properties":{"stepType":"HealthCheck","attributes":{"waitDuration":"PT10M","maxElasticDuration":"PT20M","healthyStateDuration":"PT60M","type":"REST","properties":{"healthChecks":[{"name":"RestHealthQuery1","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus","authentication":{"type":"ApiKey","name":"Code","in":"Query","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}},{"name":"RestHealthQuery2","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus","authentication":{"type":"ApiKey","name":"x-functions-key","in":"Header","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}}]}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep","name":"cliadm000001RestHealthCheckStep","location":"centralus"}' headers: cache-control: - no-store, no-cache content-length: - - '4' + - '1215' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:29 GMT + - Wed, 15 Jan 2020 00:26:25 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-frame-options: - DENY - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -3037,87 +2878,41 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2018-09-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/steps/cliadm000001WaitStep'' - under resource group ''cliadm000001'' was not found."}}' - headers: - cache-control: - - no-cache - content-length: - - '170' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 16 Apr 2019 21:43:29 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: - - deploymentmanager service-unit update - Connection: - - keep-alive - ParameterSetName: - - -g --service-topology-name --service-name -n --deployment-mode - User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep?api-version=2019-11-01-preview response: body: - string: '{"error":{"code":"BadGatewayConnection","message":"The network connectivity - issue encountered for ''Microsoft.DeploymentManager''; cannot fulfill the - request."}}' + string: '{"properties":{"stepType":"HealthCheck","attributes":{"waitDuration":"PT10M","maxElasticDuration":"PT20M","healthyStateDuration":"PT60M","type":"REST","properties":{"healthChecks":[{"name":"RestHealthQuery1","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus","authentication":{"type":"ApiKey","name":"Code","in":"Query","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}},{"name":"RestHealthQuery2","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus","authentication":{"type":"ApiKey","name":"x-functions-key","in":"Header","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}}]}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep","name":"cliadm000001RestHealthCheckStep","location":"centralus"}' headers: cache-control: - - no-cache - connection: - - close + - no-store, no-cache content-length: - - '159' + - '1215' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:32 GMT + - Wed, 15 Jan 2020 00:26:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-failure-cause: - - service + x-frame-options: + - DENY status: - code: 502 - message: Bad Gateway + code: 200 + message: OK - request: body: null headers: @@ -3126,30 +2921,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit update + - deploymentmanager step update Connection: - keep-alive ParameterSetName: - - -g --service-topology-name --service-name -n --deployment-mode + - -g -n --step User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + string: '{"properties":{"stepType":"HealthCheck","attributes":{"waitDuration":"PT10M","maxElasticDuration":"PT20M","healthyStateDuration":"PT60M","type":"REST","properties":{"healthChecks":[{"name":"RestHealthQuery1","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus","authentication":{"type":"ApiKey","name":"Code","in":"Query","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}},{"name":"RestHealthQuery2","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus","authentication":{"type":"ApiKey","name":"x-functions-key","in":"Header","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}}]}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep","name":"cliadm000001RestHealthCheckStep","location":"centralus"}' headers: cache-control: - no-store, no-cache content-length: - - '660' + - '1215' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:33 GMT + - Wed, 15 Jan 2020 00:26:26 GMT expires: - '-1' pragma: @@ -3168,49 +2963,53 @@ interactions: code: 200 message: OK - request: - body: 'b''{"location": "centralus", "properties": {"targetResourceGroup": "cliadm000001", - "deploymentMode": "Complete", "artifacts": {"templateArtifactSourceRelativePath": - "storage.template.json", "parametersArtifactSourceRelativePath": "storage.parameters.json"}}}''' + body: '{"location": "centralus", "properties": {"stepType": "HealthCheck", "attributes": + {"waitDuration": "PT10M", "maxElasticDuration": "PT20M", "healthyStateDuration": + "PT30M", "type": "REST", "properties": {"healthChecks": [{"name": "RestHealthQuery1", + "request": {"method": "GET", "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus", + "authentication": {"type": "ApiKey", "name": "Code", "in": "Query", "value": + "AuthValue=="}}, "response": {"successStatusCodes": ["OK"], "regex": {"matches": + ["resthc1", "healthy"], "matchQuantifier": "All"}}}, {"name": "RestHealthQuery2", + "request": {"method": "GET", "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus", + "authentication": {"type": "ApiKey", "name": "x-functions-key", "in": "Header", + "value": "AuthValue=="}}, "response": {"successStatusCodes": ["OK"], "regex": + {"matches": ["resthc1", "healthy"], "matchQuantifier": "All"}}}]}}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit update + - deploymentmanager step update Connection: - keep-alive Content-Length: - - '255' + - '967' Content-Type: - application/json; charset=utf-8 ParameterSetName: - - -g --service-topology-name --service-name -n --deployment-mode + - -g -n --step User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Complete","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Running"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + string: '{"properties":{"stepType":"HealthCheck","attributes":{"waitDuration":"PT10M","maxElasticDuration":"PT20M","healthyStateDuration":"PT30M","type":"REST","properties":{"healthChecks":[{"name":"RestHealthQuery1","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus","authentication":{"type":"ApiKey","name":"Code","in":"Query","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}},{"name":"RestHealthQuery2","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus","authentication":{"type":"ApiKey","name":"x-functions-key","in":"Header","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}}]}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep","name":"cliadm000001RestHealthCheckStep","location":"centralus"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/4801a695-caab-4e5d-969d-04965ec9dd47?api-version=2018-09-01-preview cache-control: - no-store, no-cache content-length: - - '655' + - '1215' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:43:35 GMT + - Wed, 15 Jan 2020 00:26:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/4801a695-caab-4e5d-969d-04965ec9dd47?api-version=2018-09-01-preview pragma: - no-cache strict-transport-security: @@ -3225,54 +3024,66 @@ interactions: code: 201 message: Created - request: - body: null + body: '{"location": "centralus", "properties": {"stepType": "HealthCheck", "attributes": + {"waitDuration": "PT10M", "maxElasticDuration": "PT20M", "healthyStateDuration": + "PT30M", "type": "REST", "properties": {"healthChecks": [{"name": "RestHealthQuery1", + "request": {"method": "GET", "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus", + "authentication": {"type": "ApiKey", "name": "Code", "in": "Query", "value": + "AuthValue=="}}, "response": {"successStatusCodes": ["OK"], "regex": {"matches": + ["resthc1", "healthy"], "matchQuantifier": "All"}}}, {"name": "RestHealthQuery2", + "request": {"method": "GET", "uri": "https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus", + "authentication": {"type": "ApiKey", "name": "x-functions-key", "in": "Header", + "value": "AuthValue=="}}, "response": {"successStatusCodes": ["OK"], "regex": + {"matches": ["resthc1", "healthy"], "matchQuantifier": "All"}}}]}}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit update + - deploymentmanager step create Connection: - keep-alive + Content-Length: + - '967' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g --service-topology-name --service-name -n --deployment-mode + - -g --step User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/4801a695-caab-4e5d-969d-04965ec9dd47?api-version=2018-09-01-preview + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep2?api-version=2019-11-01-preview response: body: - string: '{"status":"Succeeded","startTime":"2019-04-16T21:43:34.8140000Z","endTime":"2019-04-16T21:43:37.5900000Z"}' + string: '{"properties":{"stepType":"HealthCheck","attributes":{"waitDuration":"PT10M","maxElasticDuration":"PT20M","healthyStateDuration":"PT30M","type":"REST","properties":{"healthChecks":[{"name":"RestHealthQuery1","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus","authentication":{"type":"ApiKey","name":"Code","in":"Query","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}},{"name":"RestHealthQuery2","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus","authentication":{"type":"ApiKey","name":"x-functions-key","in":"Header","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}}]}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep2","name":"cliadm000001RestHealthCheckStep2","location":"centralus"}' headers: cache-control: - no-store, no-cache content-length: - - '106' + - '1217' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:28 GMT + - Wed, 15 Jan 2020 00:26:30 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-frame-options: - DENY + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -3281,28 +3092,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit update + - deploymentmanager step list Connection: - keep-alive ParameterSetName: - - -g --service-topology-name --service-name -n --deployment-mode + - -g User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Complete","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + string: '[{"properties":{"stepType":"HealthCheck","attributes":{"waitDuration":"PT10M","maxElasticDuration":"PT20M","healthyStateDuration":"PT30M","type":"REST","properties":{"healthChecks":[{"name":"RestHealthQuery1","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus","authentication":{"type":"ApiKey","name":"Code","in":"Query","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}},{"name":"RestHealthQuery2","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus","authentication":{"type":"ApiKey","name":"x-functions-key","in":"Header","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}}]}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep","name":"cliadm000001RestHealthCheckStep","location":"centralus"},{"properties":{"stepType":"HealthCheck","attributes":{"waitDuration":"PT10M","maxElasticDuration":"PT20M","healthyStateDuration":"PT30M","type":"REST","properties":{"healthChecks":[{"name":"RestHealthQuery1","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck1/healthstatus","authentication":{"type":"ApiKey","name":"Code","in":"Query","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}},{"name":"RestHealthQuery2","request":{"method":"GET","uri":"https://clientvalidations.deploymentmanager.net/applications/healthcheck2/healthStatus","authentication":{"type":"ApiKey","name":"x-functions-key","in":"Header","value":"AuthValue=="}},"response":{"successStatusCodes":["OK"],"regex":{"matches":["resthc1","healthy"],"matchQuantifier":"All"}}}]}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep2","name":"cliadm000001RestHealthCheckStep2","location":"centralus"},{"properties":{"stepType":"Wait","attributes":{"duration":"PT10M"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/steps","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep","name":"cliadm000001WaitStep","location":"centralus"}]' headers: cache-control: - no-store, no-cache content-length: - - '657' + - '2818' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:29 GMT + - Wed, 15 Jan 2020 00:26:32 GMT expires: - '-1' pragma: @@ -3328,20 +3141,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit delete + - deploymentmanager step delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - -g --service-topology-name --service-name -n + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep?api-version=2019-11-01-preview response: body: string: 'null' @@ -3353,7 +3166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:31 GMT + - Wed, 15 Jan 2020 00:26:36 GMT expires: - '-1' pragma: @@ -3381,31 +3194,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit show + - deploymentmanager step show Connection: - keep-alive ParameterSetName: - - -g --service-topology-name --service-name -n + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep?api-version=2019-11-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep'' under resource group ''cliadm000001'' was not found."}}' headers: cache-control: - no-cache content-length: - - '255' + - '181' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:32 GMT + - Wed, 15 Jan 2020 00:26:36 GMT expires: - '-1' pragma: @@ -3427,20 +3240,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit delete + - deploymentmanager step delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - -g --service-topology-name --service-name -n + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep2?api-version=2019-11-01-preview response: body: string: 'null' @@ -3452,7 +3265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:34 GMT + - Wed, 15 Jan 2020 00:26:40 GMT expires: - '-1' pragma: @@ -3480,31 +3293,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service-unit show + - deploymentmanager step show Connection: - keep-alive ParameterSetName: - - -g --service-topology-name --service-name -n + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep2?api-version=2019-11-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/steps/cliadm000001RestHealthCheckStep2'' under resource group ''cliadm000001'' was not found."}}' headers: cache-control: - no-cache content-length: - - '262' + - '182' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:34 GMT + - Wed, 15 Jan 2020 00:26:41 GMT expires: - '-1' pragma: @@ -3526,30 +3339,32 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service update + - deploymentmanager step delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -g --service-topology-name -n --target-subscription-id + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2018-09-01-preview + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service","name":"cliadm000001Service","location":"centralus"}' + string: 'null' headers: cache-control: - no-store, no-cache content-length: - - '489' + - '4' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:36 GMT + - Wed, 15 Jan 2020 00:26:43 GMT expires: - '-1' pragma: @@ -3564,46 +3379,794 @@ interactions: - nosniff x-frame-options: - DENY + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 200 message: OK - request: - body: '{"location": "centralus", "properties": {"targetLocation": "centralus", - "targetSubscriptionId": "29843263-a568-4db8-899f-10977b9d5c7b"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager service update + - deploymentmanager step show Connection: - keep-alive - Content-Length: - - '136' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g --service-topology-name -n --target-subscription-id + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2018-09-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/steps/cliadm000001WaitStep?api-version=2019-11-01-preview response: body: - string: '{"properties":{"targetSubscriptionId":"29843263-a568-4db8-899f-10977b9d5c7b","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service","name":"cliadm000001Service","location":"centralus"}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/steps/cliadm000001WaitStep'' + under resource group ''cliadm000001'' was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:26:45 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: + - deploymentmanager service-unit update + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name --service-name -n --deployment-mode + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '660' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:26:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK +- request: + body: 'b''{"location": "centralus", "properties": {"targetResourceGroup": "cliadm000001", + "deploymentMode": "Complete", "artifacts": {"templateArtifactSourceRelativePath": + "storage.template.json", "parametersArtifactSourceRelativePath": "storage.parameters.json"}}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-unit update + Connection: + - keep-alive + Content-Length: + - '255' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --service-topology-name --service-name -n --deployment-mode + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Complete","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Running"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/ccaf2023-f977-4771-8c8a-8988f4333088?api-version=2019-11-01-preview + cache-control: + - no-store, no-cache + content-length: + - '655' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:26:48 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/ccaf2023-f977-4771-8c8a-8988f4333088?api-version=2019-11-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-unit update + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name --service-name -n --deployment-mode + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/operationResults/ccaf2023-f977-4771-8c8a-8988f4333088?api-version=2019-11-01-preview + response: + body: + string: '{"status":"Succeeded","startTime":"2020-01-15T00:26:48.0470000Z","endTime":"2020-01-15T00:26:50.4090000Z"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '106' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-unit update + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name --service-name -n --deployment-mode + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Complete","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '657' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-unit list + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name --service-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits?api-version=2019-11-01-preview + response: + body: + string: '[{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Incremental","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage_invalid.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit","name":"cliadm000001InvalidServiceUnit","location":"centralus"},{"properties":{"targetResourceGroup":"cliadm000001","deploymentMode":"Complete","artifacts":{"templateArtifactSourceRelativePath":"storage.template.json","parametersArtifactSourceRelativePath":"storage.parameters.json"},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit","name":"cliadm000001ServiceUnit","location":"centralus"}]' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1342' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-unit delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --service-topology-name --service-name -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview + response: + body: + string: 'null' + headers: + cache-control: + - no-store, no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-unit show + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name --service-name -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit?api-version=2019-11-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001ServiceUnit'' + under resource group ''cliadm000001'' was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '255' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:42 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: + - deploymentmanager service-unit delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --service-topology-name --service-name -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2019-11-01-preview + response: + body: + string: 'null' + headers: + cache-control: + - no-store, no-cache + content-length: + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-unit show + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name --service-name -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit?api-version=2019-11-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service/serviceUnits/cliadm000001InvalidServiceUnit'' + under resource group ''cliadm000001'' was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '262' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:45 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: + - deploymentmanager service update + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name -n --target-subscription-id + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"targetSubscriptionId":"53012dcb-5039-4e96-8e6c-5d913da1cdb5","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service","name":"cliadm000001Service","location":"centralus"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:46 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK +- request: + body: '{"location": "centralus", "properties": {"targetLocation": "centralus", + "targetSubscriptionId": "29843263-a568-4db8-899f-10977b9d5c7b"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service update + Connection: + - keep-alive + Content-Length: + - '136' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --service-topology-name -n --target-subscription-id + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"targetSubscriptionId":"29843263-a568-4db8-899f-10977b9d5c7b","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service","name":"cliadm000001Service","location":"centralus"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '489' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:49 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: '{"location": "centralus", "properties": {"targetLocation": "centralus", + "targetSubscriptionId": "29843263-a568-4db8-899f-10977b9d5c7b"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service create + Connection: + - keep-alive + Content-Length: + - '136' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g --service-topology-name -n -l --target-location --target-subscription-id + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"targetSubscriptionId":"29843263-a568-4db8-899f-10977b9d5c7b","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service2","name":"cliadm000001Service2","location":"centralus"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '491' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service list + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services?api-version=2019-11-01-preview + response: + body: + string: '[{"properties":{"targetSubscriptionId":"29843263-a568-4db8-899f-10977b9d5c7b","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service","name":"cliadm000001Service","location":"centralus"},{"properties":{"targetSubscriptionId":"29843263-a568-4db8-899f-10977b9d5c7b","targetLocation":"centralus","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies/services","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service2","name":"cliadm000001Service2","location":"centralus"}]' + headers: + cache-control: + - no-store, no-cache + content-length: + - '983' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service delete + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g --service-topology-name -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2019-11-01-preview + response: + body: + string: 'null' headers: cache-control: - no-store, no-cache content-length: - - '489' + - '4' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:27:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service show + Connection: + - keep-alive + ParameterSetName: + - -g --service-topology-name -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2019-11-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service'' + under resource group ''cliadm000001'' was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '218' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:37 GMT + - Wed, 15 Jan 2020 00:27:56 GMT expires: - '-1' pragma: @@ -3612,13 +4175,11 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-frame-options: - - DENY - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-failure-cause: + - gateway status: - code: 201 - message: Created + code: 404 + message: Not Found - request: body: null headers: @@ -3635,12 +4196,12 @@ interactions: ParameterSetName: - -g --service-topology-name -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service2?api-version=2019-11-01-preview response: body: string: 'null' @@ -3652,7 +4213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:38 GMT + - Wed, 15 Jan 2020 00:28:01 GMT expires: - '-1' pragma: @@ -3686,25 +4247,25 @@ interactions: ParameterSetName: - -g --service-topology-name -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service2?api-version=2019-11-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology/services/cliadm000001Service2'' under resource group ''cliadm000001'' was not found."}}' headers: cache-control: - no-cache content-length: - - '218' + - '219' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:39 GMT + - Wed, 15 Jan 2020 00:28:00 GMT expires: - '-1' pragma: @@ -3732,24 +4293,26 @@ interactions: ParameterSetName: - -n --account-name --permissions --start --expiry -o User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mandardev/providers/Microsoft.Storage/storageAccounts/akvtest","name":"akvtest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-19T23:25:44.3527853Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-19T23:25:44.3527853Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-19T23:25:44.2433775Z","primaryEndpoints":{"blob":"https://akvtest.blob.core.windows.net/","queue":"https://akvtest.queue.core.windows.net/","table":"https://akvtest.table.core.windows.net/","file":"https://akvtest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceEUSrg/providers/Microsoft.Storage/storageAccounts/odgl6zpjcwo5g","name":"odgl6zpjcwo5g","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:07:59.7976368Z","primaryEndpoints":{"blob":"https://odgl6zpjcwo5g.blob.core.windows.net/","queue":"https://odgl6zpjcwo5g.queue.core.windows.net/","table":"https://odgl6zpjcwo5g.table.core.windows.net/","file":"https://odgl6zpjcwo5g.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimServiceEUSrg/providers/Microsoft.Storage/storageAccounts/c4lxce52hz7dy","name":"c4lxce52hz7dy","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:53.9013528Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:53.9013528Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-26T02:18:53.8076547Z","primaryEndpoints":{"blob":"https://c4lxce52hz7dy.blob.core.windows.net/","queue":"https://c4lxce52hz7dy.queue.core.windows.net/","table":"https://c4lxce52hz7dy.table.core.windows.net/","file":"https://c4lxce52hz7dy.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-synthetics-prod/providers/Microsoft.Storage/storageAccounts/admsyntheticsproddiag","name":"admsyntheticsproddiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-10T17:49:10.7539587Z","primaryEndpoints":{"blob":"https://admsyntheticsproddiag.blob.core.windows.net/","queue":"https://admsyntheticsproddiag.queue.core.windows.net/","table":"https://admsyntheticsproddiag.table.core.windows.net/","file":"https://admsyntheticsproddiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus21","name":"admcieus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:15.1754902Z","primaryEndpoints":{"dfs":"https://admcieus21.dfs.core.windows.net/","web":"https://admcieus21.z20.web.core.windows.net/","blob":"https://admcieus21.blob.core.windows.net/","queue":"https://admcieus21.queue.core.windows.net/","table":"https://admcieus21.table.core.windows.net/","file":"https://admcieus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus21-secondary.dfs.core.windows.net/","web":"https://admcieus21-secondary.z20.web.core.windows.net/","blob":"https://admcieus21-secondary.blob.core.windows.net/","queue":"https://admcieus21-secondary.queue.core.windows.net/","table":"https://admcieus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregeus21","name":"admciregeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:22:25.1351453Z","primaryEndpoints":{"dfs":"https://admciregeus21.dfs.core.windows.net/","web":"https://admciregeus21.z20.web.core.windows.net/","blob":"https://admciregeus21.blob.core.windows.net/","queue":"https://admciregeus21.queue.core.windows.net/","table":"https://admciregeus21.table.core.windows.net/","file":"https://admciregeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregeus21-secondary.dfs.core.windows.net/","web":"https://admciregeus21-secondary.z20.web.core.windows.net/","blob":"https://admciregeus21-secondary.blob.core.windows.net/","queue":"https://admciregeus21-secondary.queue.core.windows.net/","table":"https://admciregeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus22","name":"admppeeus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:24.2368190Z","primaryEndpoints":{"dfs":"https://admppeeus22.dfs.core.windows.net/","web":"https://admppeeus22.z20.web.core.windows.net/","blob":"https://admppeeus22.blob.core.windows.net/","queue":"https://admppeeus22.queue.core.windows.net/","table":"https://admppeeus22.table.core.windows.net/","file":"https://admppeeus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus22-secondary.dfs.core.windows.net/","web":"https://admppeeus22-secondary.z20.web.core.windows.net/","blob":"https://admppeeus22-secondary.blob.core.windows.net/","queue":"https://admppeeus22-secondary.queue.core.windows.net/","table":"https://admppeeus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus21","name":"admppeeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:01.1138624Z","primaryEndpoints":{"dfs":"https://admppeeus21.dfs.core.windows.net/","web":"https://admppeeus21.z20.web.core.windows.net/","blob":"https://admppeeus21.blob.core.windows.net/","queue":"https://admppeeus21.queue.core.windows.net/","table":"https://admppeeus21.table.core.windows.net/","file":"https://admppeeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus21-secondary.dfs.core.windows.net/","web":"https://admppeeus21-secondary.z20.web.core.windows.net/","blob":"https://admppeeus21-secondary.blob.core.windows.net/","queue":"https://admppeeus21-secondary.queue.core.windows.net/","table":"https://admppeeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-EastUS2/providers/Microsoft.Storage/storageAccounts/ev2teststoragevivardm2","name":"ev2teststoragevivardm2","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-08T19:51:16.9477840Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-08T19:51:16.9477840Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-03-08T19:51:16.8071432Z","primaryEndpoints":{"dfs":"https://ev2teststoragevivardm2.dfs.core.windows.net/","web":"https://ev2teststoragevivardm2.z20.web.core.windows.net/","blob":"https://ev2teststoragevivardm2.blob.core.windows.net/","queue":"https://ev2teststoragevivardm2.queue.core.windows.net/","table":"https://ev2teststoragevivardm2.table.core.windows.net/","file":"https://ev2teststoragevivardm2.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ev2teststoragevivardm2-secondary.dfs.core.windows.net/","web":"https://ev2teststoragevivardm2-secondary.z20.web.core.windows.net/","blob":"https://ev2teststoragevivardm2-secondary.blob.core.windows.net/","queue":"https://ev2teststoragevivardm2-secondary.queue.core.windows.net/","table":"https://ev2teststoragevivardm2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegeus21","name":"admpperegeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:04:52.4281644Z","primaryEndpoints":{"dfs":"https://admpperegeus21.dfs.core.windows.net/","web":"https://admpperegeus21.z20.web.core.windows.net/","blob":"https://admpperegeus21.blob.core.windows.net/","queue":"https://admpperegeus21.queue.core.windows.net/","table":"https://admpperegeus21.table.core.windows.net/","file":"https://admpperegeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegeus21-secondary.dfs.core.windows.net/","web":"https://admpperegeus21-secondary.z20.web.core.windows.net/","blob":"https://admpperegeus21-secondary.blob.core.windows.net/","queue":"https://admpperegeus21-secondary.queue.core.windows.net/","table":"https://admpperegeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus22","name":"admcieus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:59.5640997Z","primaryEndpoints":{"dfs":"https://admcieus22.dfs.core.windows.net/","web":"https://admcieus22.z20.web.core.windows.net/","blob":"https://admcieus22.blob.core.windows.net/","queue":"https://admcieus22.queue.core.windows.net/","table":"https://admcieus22.table.core.windows.net/","file":"https://admcieus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus22-secondary.dfs.core.windows.net/","web":"https://admcieus22-secondary.z20.web.core.windows.net/","blob":"https://admcieus22-secondary.blob.core.windows.net/","queue":"https://admcieus22-secondary.queue.core.windows.net/","table":"https://admcieus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs453012dcb5039x4e96x8e6","name":"cs453012dcb5039x4e96x8e6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-12T18:58:59.8070555Z","primaryEndpoints":{"blob":"https://cs453012dcb5039x4e96x8e6.blob.core.windows.net/","queue":"https://cs453012dcb5039x4e96x8e6.queue.core.windows.net/","table":"https://cs453012dcb5039x4e96x8e6.table.core.windows.net/","file":"https://cs453012dcb5039x4e96x8e6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sampletestresourcegroup/providers/Microsoft.Storage/storageAccounts/g3uktb4im6td2functions","name":"g3uktb4im6td2functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-01T02:01:53.9239903Z","primaryEndpoints":{"blob":"https://g3uktb4im6td2functions.blob.core.windows.net/","queue":"https://g3uktb4im6td2functions.queue.core.windows.net/","table":"https://g3uktb4im6td2functions.table.core.windows.net/","file":"https://g3uktb4im6td2functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.Service/providers/Microsoft.Storage/storageAccounts/admrestartftstgacct","name":"admrestartftstgacct","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-24T01:29:31.9629396Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-24T01:29:31.9629396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-24T01:29:31.8651666Z","primaryEndpoints":{"blob":"https://admrestartftstgacct.blob.core.windows.net/","queue":"https://admrestartftstgacct.queue.core.windows.net/","table":"https://admrestartftstgacct.table.core.windows.net/","file":"https://admrestartftstgacct.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dtServiceWUSrg/providers/Microsoft.Storage/storageAccounts/sr7j4orkujak6","name":"sr7j4orkujak6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-15T21:48:56.6949513Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-15T21:48:56.6949513Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-15T21:48:56.5074507Z","primaryEndpoints":{"blob":"https://sr7j4orkujak6.blob.core.windows.net/","queue":"https://sr7j4orkujak6.queue.core.windows.net/","table":"https://sr7j4orkujak6.table.core.windows.net/","file":"https://sr7j4orkujak6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceWUSrg/providers/Microsoft.Storage/storageAccounts/in7tlbyhwo3ss","name":"in7tlbyhwo3ss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:08:04.3489449Z","primaryEndpoints":{"blob":"https://in7tlbyhwo3ss.blob.core.windows.net/","queue":"https://in7tlbyhwo3ss.queue.core.windows.net/","table":"https://in7tlbyhwo3ss.table.core.windows.net/","file":"https://in7tlbyhwo3ss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupwus001/providers/Microsoft.Storage/storageAccounts/zxagicpuacs2ksawinvm","name":"zxagicpuacs2ksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:43:09.3042958Z","primaryEndpoints":{"blob":"https://zxagicpuacs2ksawinvm.blob.core.windows.net/","queue":"https://zxagicpuacs2ksawinvm.queue.core.windows.net/","table":"https://zxagicpuacs2ksawinvm.table.core.windows.net/","file":"https://zxagicpuacs2ksawinvm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/syntheticstests/providers/Microsoft.Storage/storageAccounts/syntheticstest","name":"syntheticstest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-14T00:28:41.8187324Z","primaryEndpoints":{"blob":"https://syntheticstest.blob.core.windows.net/","queue":"https://syntheticstest.queue.core.windows.net/","table":"https://syntheticstest.table.core.windows.net/","file":"https://syntheticstest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FunctionalTestWUS/providers/Microsoft.Storage/storageAccounts/nestedev2storage","name":"nestedev2storage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-17T21:31:20.5471773Z","primaryEndpoints":{"blob":"https://nestedev2storage.blob.core.windows.net/","queue":"https://nestedev2storage.queue.core.windows.net/","table":"https://nestedev2storage.table.core.windows.net/","file":"https://nestedev2storage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppewus1","name":"admppewus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:47.5598191Z","primaryEndpoints":{"dfs":"https://admppewus1.dfs.core.windows.net/","web":"https://admppewus1.z22.web.core.windows.net/","blob":"https://admppewus1.blob.core.windows.net/","queue":"https://admppewus1.queue.core.windows.net/","table":"https://admppewus1.table.core.windows.net/","file":"https://admppewus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppewus1-secondary.dfs.core.windows.net/","web":"https://admppewus1-secondary.z22.web.core.windows.net/","blob":"https://admppewus1-secondary.blob.core.windows.net/","queue":"https://admppewus1-secondary.queue.core.windows.net/","table":"https://admppewus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimServiceWUSrg/providers/Microsoft.Storage/storageAccounts/zdydbpivpbgai","name":"zdydbpivpbgai","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-26T02:18:58.2404928Z","primaryEndpoints":{"blob":"https://zdydbpivpbgai.blob.core.windows.net/","queue":"https://zdydbpivpbgai.queue.core.windows.net/","table":"https://zdydbpivpbgai.table.core.windows.net/","file":"https://zdydbpivpbgai.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciwus1","name":"admciwus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:20:36.8362556Z","primaryEndpoints":{"dfs":"https://admciwus1.dfs.core.windows.net/","web":"https://admciwus1.z22.web.core.windows.net/","blob":"https://admciwus1.blob.core.windows.net/","queue":"https://admciwus1.queue.core.windows.net/","table":"https://admciwus1.table.core.windows.net/","file":"https://admciwus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciwus1-secondary.dfs.core.windows.net/","web":"https://admciwus1-secondary.z22.web.core.windows.net/","blob":"https://admciwus1-secondary.blob.core.windows.net/","queue":"https://admciwus1-secondary.queue.core.windows.net/","table":"https://admciwus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctionsef89fd26","name":"azurefunctionsef89fd26","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T00:41:49.5340063Z","primaryEndpoints":{"blob":"https://azurefunctionsef89fd26.blob.core.windows.net/","queue":"https://azurefunctionsef89fd26.queue.core.windows.net/","table":"https://azurefunctionsef89fd26.table.core.windows.net/","file":"https://azurefunctionsef89fd26.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IrisYueqiTanExpressV2-2/providers/Microsoft.Storage/storageAccounts/xrypq37bo4po4functions","name":"xrypq37bo4po4functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-09T00:14:17.6365897Z","primaryEndpoints":{"blob":"https://xrypq37bo4po4functions.blob.core.windows.net/","queue":"https://xrypq37bo4po4functions.queue.core.windows.net/","table":"https://xrypq37bo4po4functions.table.core.windows.net/","file":"https://xrypq37bo4po4functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-sdk-tests/providers/Microsoft.Storage/storageAccounts/sdktests","name":"sdktests","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-25T21:51:56.4144314Z","primaryEndpoints":{"dfs":"https://sdktests.dfs.core.windows.net/","web":"https://sdktests.z22.web.core.windows.net/","blob":"https://sdktests.blob.core.windows.net/","queue":"https://sdktests.queue.core.windows.net/","table":"https://sdktests.table.core.windows.net/","file":"https://sdktests.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sdktests-secondary.dfs.core.windows.net/","web":"https://sdktests-secondary.z22.web.core.windows.net/","blob":"https://sdktests-secondary.blob.core.windows.net/","queue":"https://sdktests-secondary.queue.core.windows.net/","table":"https://sdktests-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupweu002/providers/Microsoft.Storage/storageAccounts/h2he2t3nvdnjksawinvm","name":"h2he2t3nvdnjksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:54:35.2244069Z","primaryEndpoints":{"blob":"https://h2he2t3nvdnjksawinvm.blob.core.windows.net/","queue":"https://h2he2t3nvdnjksawinvm.queue.core.windows.net/","table":"https://h2he2t3nvdnjksawinvm.table.core.windows.net/","file":"https://h2he2t3nvdnjksawinvm.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus2","name":"admcicus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:42.3250263Z","primaryEndpoints":{"dfs":"https://admcicus2.dfs.core.windows.net/","web":"https://admcicus2.z19.web.core.windows.net/","blob":"https://admcicus2.blob.core.windows.net/","queue":"https://admcicus2.queue.core.windows.net/","table":"https://admcicus2.table.core.windows.net/","file":"https://admcicus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus2-secondary.dfs.core.windows.net/","web":"https://admcicus2-secondary.z19.web.core.windows.net/","blob":"https://admcicus2-secondary.blob.core.windows.net/","queue":"https://admcicus2-secondary.queue.core.windows.net/","table":"https://admcicus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm898591314xt","name":"gsm898591314xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.4349606Z","primaryEndpoints":{"blob":"https://gsm898591314xt.blob.core.windows.net/","queue":"https://gsm898591314xt.queue.core.windows.net/","table":"https://gsm898591314xt.table.core.windows.net/","file":"https://gsm898591314xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus2","name":"admppecus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:01:28.3032730Z","primaryEndpoints":{"dfs":"https://admppecus2.dfs.core.windows.net/","web":"https://admppecus2.z19.web.core.windows.net/","blob":"https://admppecus2.blob.core.windows.net/","queue":"https://admppecus2.queue.core.windows.net/","table":"https://admppecus2.table.core.windows.net/","file":"https://admppecus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus2-secondary.dfs.core.windows.net/","web":"https://admppecus2-secondary.z19.web.core.windows.net/","blob":"https://admppecus2-secondary.blob.core.windows.net/","queue":"https://admppecus2-secondary.queue.core.windows.net/","table":"https://admppecus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm212609152xt","name":"gsm212609152xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycidiagusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycidiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:39.3494589Z","primaryEndpoints":{"blob":"https://gsm212609152xt.blob.core.windows.net/","queue":"https://gsm212609152xt.queue.core.windows.net/","table":"https://gsm212609152xt.table.core.windows.net/","file":"https://gsm212609152xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-web-centralus/providers/Microsoft.Storage/storageAccounts/n5hoj66ysgio4functions","name":"n5hoj66ysgio4functions","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-16T20:58:45.5315876Z","primaryEndpoints":{"blob":"https://n5hoj66ysgio4functions.blob.core.windows.net/","queue":"https://n5hoj66ysgio4functions.queue.core.windows.net/","table":"https://n5hoj66ysgio4functions.table.core.windows.net/","file":"https://n5hoj66ysgio4functions.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegcus1","name":"admpperegcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:49.6550587Z","primaryEndpoints":{"dfs":"https://admpperegcus1.dfs.core.windows.net/","web":"https://admpperegcus1.z19.web.core.windows.net/","blob":"https://admpperegcus1.blob.core.windows.net/","queue":"https://admpperegcus1.queue.core.windows.net/","table":"https://admpperegcus1.table.core.windows.net/","file":"https://admpperegcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegcus1-secondary.dfs.core.windows.net/","web":"https://admpperegcus1-secondary.z19.web.core.windows.net/","blob":"https://admpperegcus1-secondary.blob.core.windows.net/","queue":"https://admpperegcus1-secondary.queue.core.windows.net/","table":"https://admpperegcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-vinnie/providers/Microsoft.Storage/storageAccounts/functionadf46d78abf7","name":"functionadf46d78abf7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T22:23:47.6971972Z","primaryEndpoints":{"blob":"https://functionadf46d78abf7.blob.core.windows.net/","queue":"https://functionadf46d78abf7.queue.core.windows.net/","table":"https://functionadf46d78abf7.table.core.windows.net/","file":"https://functionadf46d78abf7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hrpci/providers/Microsoft.Storage/storageAccounts/hrpci","name":"hrpci","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-10T19:52:39.6404170Z","primaryEndpoints":{"dfs":"https://hrpci.dfs.core.windows.net/","web":"https://hrpci.z19.web.core.windows.net/","blob":"https://hrpci.blob.core.windows.net/","queue":"https://hrpci.queue.core.windows.net/","table":"https://hrpci.table.core.windows.net/","file":"https://hrpci.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hrpci-secondary.dfs.core.windows.net/","web":"https://hrpci-secondary.z19.web.core.windows.net/","blob":"https://hrpci-secondary.blob.core.windows.net/","queue":"https://hrpci-secondary.queue.core.windows.net/","table":"https://hrpci-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus1","name":"admppecus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:00:55.3271375Z","primaryEndpoints":{"dfs":"https://admppecus1.dfs.core.windows.net/","web":"https://admppecus1.z19.web.core.windows.net/","blob":"https://admppecus1.blob.core.windows.net/","queue":"https://admppecus1.queue.core.windows.net/","table":"https://admppecus1.table.core.windows.net/","file":"https://admppecus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus1-secondary.dfs.core.windows.net/","web":"https://admppecus1-secondary.z19.web.core.windows.net/","blob":"https://admppecus1-secondary.blob.core.windows.net/","queue":"https://admppecus1-secondary.queue.core.windows.net/","table":"https://admppecus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm621654276xt","name":"gsm621654276xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevdiagusc","GenevaWPStorageGroupName":"admdevdiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:00.4301168Z","primaryEndpoints":{"blob":"https://gsm621654276xt.blob.core.windows.net/","queue":"https://gsm621654276xt.queue.core.windows.net/","table":"https://gsm621654276xt.table.core.windows.net/","file":"https://gsm621654276xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HrpAuthMetadataEndpoint/providers/Microsoft.Storage/storageAccounts/hrpauthmetadata9077","name":"hrpauthmetadata9077","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-22T07:02:50.9479282Z","primaryEndpoints":{"blob":"https://hrpauthmetadata9077.blob.core.windows.net/","queue":"https://hrpauthmetadata9077.queue.core.windows.net/","table":"https://hrpauthmetadata9077.table.core.windows.net/","file":"https://hrpauthmetadata9077.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1664594389xt","name":"gsm1664594389xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestdiagusc","GenevaWPStorageGroupName":"asdtestdiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.9569044Z","primaryEndpoints":{"blob":"https://gsm1664594389xt.blob.core.windows.net/","queue":"https://gsm1664594389xt.queue.core.windows.net/","table":"https://gsm1664594389xt.table.core.windows.net/","file":"https://gsm1664594389xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/asdcishellpublishcus","name":"asdcishellpublishcus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:15:04.3412061Z","primaryEndpoints":{"blob":"https://asdcishellpublishcus.blob.core.windows.net/","queue":"https://asdcishellpublishcus.queue.core.windows.net/","table":"https://asdcishellpublishcus.table.core.windows.net/","file":"https://asdcishellpublishcus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-Storage-CentralUS/providers/Microsoft.Storage/storageAccounts/ev2teststoragevivardm","name":"ev2teststoragevivardm","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-08T19:49:13.2579927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-08T19:49:13.2579927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-03-08T19:49:13.1017358Z","primaryEndpoints":{"dfs":"https://ev2teststoragevivardm.dfs.core.windows.net/","web":"https://ev2teststoragevivardm.z19.web.core.windows.net/","blob":"https://ev2teststoragevivardm.blob.core.windows.net/","queue":"https://ev2teststoragevivardm.queue.core.windows.net/","table":"https://ev2teststoragevivardm.table.core.windows.net/","file":"https://ev2teststoragevivardm.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ev2teststoragevivardm-secondary.dfs.core.windows.net/","web":"https://ev2teststoragevivardm-secondary.z19.web.core.windows.net/","blob":"https://ev2teststoragevivardm-secondary.blob.core.windows.net/","queue":"https://ev2teststoragevivardm-secondary.queue.core.windows.net/","table":"https://ev2teststoragevivardm-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1021036903xt","name":"gsm1021036903xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestauditusc","GenevaWPStorageGroupName":"asdtestaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:48.0506370Z","primaryEndpoints":{"blob":"https://gsm1021036903xt.blob.core.windows.net/","queue":"https://gsm1021036903xt.queue.core.windows.net/","table":"https://gsm1021036903xt.table.core.windows.net/","file":"https://gsm1021036903xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/ev2rptesttemplate","name":"ev2rptesttemplate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-04T17:18:26.5730345Z","primaryEndpoints":{"blob":"https://ev2rptesttemplate.blob.core.windows.net/","queue":"https://ev2rptesttemplate.queue.core.windows.net/","table":"https://ev2rptesttemplate.table.core.windows.net/","file":"https://ev2rptesttemplate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1377010013xt","name":"gsm1377010013xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevusc","GenevaWPStorageGroupName":"admdev"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:05:16.3693631Z","primaryEndpoints":{"blob":"https://gsm1377010013xt.blob.core.windows.net/","queue":"https://gsm1377010013xt.queue.core.windows.net/","table":"https://gsm1377010013xt.table.core.windows.net/","file":"https://gsm1377010013xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadmcicus/providers/Microsoft.Storage/storageAccounts/msadmcicusdiag234","name":"msadmcicusdiag234","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-23T21:02:21.4925713Z","primaryEndpoints":{"blob":"https://msadmcicusdiag234.blob.core.windows.net/","queue":"https://msadmcicusdiag234.queue.core.windows.net/","table":"https://msadmcicusdiag234.table.core.windows.net/","file":"https://msadmcicusdiag234.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm623896857xt","name":"gsm623896857xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.2161393Z","primaryEndpoints":{"blob":"https://gsm623896857xt.blob.core.windows.net/","queue":"https://gsm623896857xt.queue.core.windows.net/","table":"https://gsm623896857xt.table.core.windows.net/","file":"https://gsm623896857xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm918600515xt","name":"gsm918600515xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.0755113Z","primaryEndpoints":{"blob":"https://gsm918600515xt.blob.core.windows.net/","queue":"https://gsm918600515xt.queue.core.windows.net/","table":"https://gsm918600515xt.table.core.windows.net/","file":"https://gsm918600515xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSTestStg/providers/Microsoft.Storage/storageAccounts/msteststoragecdp","name":"msteststoragecdp","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-11-30T20:03:35.2024915Z","primaryEndpoints":{"dfs":"https://msteststoragecdp.dfs.core.windows.net/","web":"https://msteststoragecdp.z19.web.core.windows.net/","blob":"https://msteststoragecdp.blob.core.windows.net/","queue":"https://msteststoragecdp.queue.core.windows.net/","table":"https://msteststoragecdp.table.core.windows.net/","file":"https://msteststoragecdp.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://msteststoragecdp-secondary.dfs.core.windows.net/","web":"https://msteststoragecdp-secondary.z19.web.core.windows.net/","blob":"https://msteststoragecdp-secondary.blob.core.windows.net/","queue":"https://msteststoragecdp-secondary.queue.core.windows.net/","table":"https://msteststoragecdp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthfailuretest/providers/Microsoft.Storage/storageAccounts/resthealthfailu94f2","name":"resthealthfailu94f2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:41:08.9283097Z","primaryEndpoints":{"blob":"https://resthealthfailu94f2.blob.core.windows.net/","queue":"https://resthealthfailu94f2.queue.core.windows.net/","table":"https://resthealthfailu94f2.table.core.windows.net/","file":"https://resthealthfailu94f2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthtestendpoint/providers/Microsoft.Storage/storageAccounts/resthealthtest","name":"resthealthtest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-10-18T19:13:44.6029902Z","primaryEndpoints":{"blob":"https://resthealthtest.blob.core.windows.net/","queue":"https://resthealthtest.queue.core.windows.net/","table":"https://resthealthtest.table.core.windows.net/","file":"https://resthealthtest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm329968443xt","name":"gsm329968443xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycisecurityusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycisecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.5073939Z","primaryEndpoints":{"blob":"https://gsm329968443xt.blob.core.windows.net/","queue":"https://gsm329968443xt.queue.core.windows.net/","table":"https://gsm329968443xt.table.core.windows.net/","file":"https://gsm329968443xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/admdemofunc","name":"admdemofunc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-05T17:20:35.2825103Z","primaryEndpoints":{"blob":"https://admdemofunc.blob.core.windows.net/","queue":"https://admdemofunc.queue.core.windows.net/","table":"https://admdemofunc.table.core.windows.net/","file":"https://admdemofunc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm443216504xt","name":"gsm443216504xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevauditusc","GenevaWPStorageGroupName":"admdevaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:59.2477536Z","primaryEndpoints":{"blob":"https://gsm443216504xt.blob.core.windows.net/","queue":"https://gsm443216504xt.queue.core.windows.net/","table":"https://gsm443216504xt.table.core.windows.net/","file":"https://gsm443216504xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm657996542xt","name":"gsm657996542xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestsecurityusc","GenevaWPStorageGroupName":"asdtestsecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.3626988Z","primaryEndpoints":{"blob":"https://gsm657996542xt.blob.core.windows.net/","queue":"https://gsm657996542xt.queue.core.windows.net/","table":"https://gsm657996542xt.table.core.windows.net/","file":"https://gsm657996542xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1968177553xt","name":"gsm1968177553xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevsecurityusc","GenevaWPStorageGroupName":"admdevsecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:09:12.5668554Z","primaryEndpoints":{"blob":"https://gsm1968177553xt.blob.core.windows.net/","queue":"https://gsm1968177553xt.queue.core.windows.net/","table":"https://gsm1968177553xt.table.core.windows.net/","file":"https://gsm1968177553xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1630685468xt","name":"gsm1630685468xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.5041089Z","primaryEndpoints":{"blob":"https://gsm1630685468xt.blob.core.windows.net/","queue":"https://gsm1630685468xt.queue.core.windows.net/","table":"https://gsm1630685468xt.table.core.windows.net/","file":"https://gsm1630685468xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDCIShell/providers/Microsoft.Storage/storageAccounts/azureservicedep8b10","name":"azureservicedep8b10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-13T02:08:37.0155870Z","primaryEndpoints":{"blob":"https://azureservicedep8b10.blob.core.windows.net/","queue":"https://azureservicedep8b10.queue.core.windows.net/","table":"https://azureservicedep8b10.table.core.windows.net/","file":"https://azureservicedep8b10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm860356163xt","name":"gsm860356163xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.7072672Z","primaryEndpoints":{"blob":"https://gsm860356163xt.blob.core.windows.net/","queue":"https://gsm860356163xt.queue.core.windows.net/","table":"https://gsm860356163xt.table.core.windows.net/","file":"https://gsm860356163xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002","name":"cliadm000002","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-16T21:29:16.9251020Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-16T21:29:16.9251020Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-16T21:29:16.8001209Z","primaryEndpoints":{"blob":"https://cliadm000002.blob.core.windows.net/","queue":"https://cliadm000002.queue.core.windows.net/","table":"https://cliadm000002.table.core.windows.net/","file":"https://cliadm000002.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregcus1","name":"admciregcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:56.3705617Z","primaryEndpoints":{"dfs":"https://admciregcus1.dfs.core.windows.net/","web":"https://admciregcus1.z19.web.core.windows.net/","blob":"https://admciregcus1.blob.core.windows.net/","queue":"https://admciregcus1.queue.core.windows.net/","table":"https://admciregcus1.table.core.windows.net/","file":"https://admciregcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregcus1-secondary.dfs.core.windows.net/","web":"https://admciregcus1-secondary.z19.web.core.windows.net/","blob":"https://admciregcus1-secondary.blob.core.windows.net/","queue":"https://admciregcus1-secondary.queue.core.windows.net/","table":"https://admciregcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm1048699176xt","name":"gsm1048699176xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeployciauditusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeployciaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.8954242Z","primaryEndpoints":{"blob":"https://gsm1048699176xt.blob.core.windows.net/","queue":"https://gsm1048699176xt.queue.core.windows.net/","table":"https://gsm1048699176xt.table.core.windows.net/","file":"https://gsm1048699176xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/shellpublishcicus","name":"shellpublishcicus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:11:08.2096556Z","primaryEndpoints":{"blob":"https://shellpublishcicus.blob.core.windows.net/","queue":"https://shellpublishcicus.queue.core.windows.net/","table":"https://shellpublishcicus.table.core.windows.net/","file":"https://shellpublishcicus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1308418995xt","name":"gsm1308418995xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.4103606Z","primaryEndpoints":{"blob":"https://gsm1308418995xt.blob.core.windows.net/","queue":"https://gsm1308418995xt.queue.core.windows.net/","table":"https://gsm1308418995xt.table.core.windows.net/","file":"https://gsm1308418995xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CloudSourceCUS/providers/Microsoft.Storage/storageAccounts/ftcloudsourceendtoend","name":"ftcloudsourceendtoend","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-16T21:39:55.7041927Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-16T21:39:55.7041927Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-04-16T21:39:55.6104248Z","primaryEndpoints":{"dfs":"https://ftcloudsourceendtoend.dfs.core.windows.net/","web":"https://ftcloudsourceendtoend.z19.web.core.windows.net/","blob":"https://ftcloudsourceendtoend.blob.core.windows.net/","queue":"https://ftcloudsourceendtoend.queue.core.windows.net/","table":"https://ftcloudsourceendtoend.table.core.windows.net/","file":"https://ftcloudsourceendtoend.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ftcloudsourceendtoend-secondary.dfs.core.windows.net/","web":"https://ftcloudsourceendtoend-secondary.z19.web.core.windows.net/","blob":"https://ftcloudsourceendtoend-secondary.blob.core.windows.net/","queue":"https://ftcloudsourceendtoend-secondary.queue.core.windows.net/","table":"https://ftcloudsourceendtoend-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArfifactManifestWithSGRCUS/providers/Microsoft.Storage/storageAccounts/ftmanifestressophiezeng","name":"ftmanifestressophiezeng","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-03-05T03:15:15.5444091Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-03-05T03:15:15.5444091Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-03-05T03:15:15.3725188Z","primaryEndpoints":{"blob":"https://ftmanifestressophiezeng.blob.core.windows.net/","queue":"https://ftmanifestressophiezeng.queue.core.windows.net/","table":"https://ftmanifestressophiezeng.table.core.windows.net/","file":"https://ftmanifestressophiezeng.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://ftmanifestressophiezeng-secondary.blob.core.windows.net/","queue":"https://ftmanifestressophiezeng-secondary.queue.core.windows.net/","table":"https://ftmanifestressophiezeng-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RestHealthDevTest/providers/Microsoft.Storage/storageAccounts/resthealthdevte9b75","name":"resthealthdevte9b75","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:45:52.6434003Z","primaryEndpoints":{"blob":"https://resthealthdevte9b75.blob.core.windows.net/","queue":"https://resthealthdevte9b75.queue.core.windows.net/","table":"https://resthealthdevte9b75.table.core.windows.net/","file":"https://resthealthdevte9b75.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus1","name":"admcicus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:03.5018652Z","primaryEndpoints":{"dfs":"https://admcicus1.dfs.core.windows.net/","web":"https://admcicus1.z19.web.core.windows.net/","blob":"https://admcicus1.blob.core.windows.net/","queue":"https://admcicus1.queue.core.windows.net/","table":"https://admcicus1.table.core.windows.net/","file":"https://admcicus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus1-secondary.dfs.core.windows.net/","web":"https://admcicus1-secondary.z19.web.core.windows.net/","blob":"https://admcicus1-secondary.blob.core.windows.net/","queue":"https://admcicus1-secondary.queue.core.windows.net/","table":"https://admcicus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArfifactManifestWithSGRCUS/providers/Microsoft.Storage/storageAccounts/chbatrares","name":"chbatrares","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-12T17:52:17.3219666Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-12T17:52:17.3219666Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-04-12T17:52:17.0876249Z","primaryEndpoints":{"dfs":"https://chbatrares.dfs.core.windows.net/","web":"https://chbatrares.z16.web.core.windows.net/","blob":"https://chbatrares.blob.core.windows.net/","queue":"https://chbatrares.queue.core.windows.net/","table":"https://chbatrares.table.core.windows.net/","file":"https://chbatrares.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://chbatrares-secondary.dfs.core.windows.net/","web":"https://chbatrares-secondary.z16.web.core.windows.net/","blob":"https://chbatrares-secondary.blob.core.windows.net/","queue":"https://chbatrares-secondary.queue.core.windows.net/","table":"https://chbatrares-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeneu1","name":"admppeneu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:17.9428692Z","primaryEndpoints":{"dfs":"https://admppeneu1.dfs.core.windows.net/","web":"https://admppeneu1.z16.web.core.windows.net/","blob":"https://admppeneu1.blob.core.windows.net/","queue":"https://admppeneu1.queue.core.windows.net/","table":"https://admppeneu1.table.core.windows.net/","file":"https://admppeneu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeneu1-secondary.dfs.core.windows.net/","web":"https://admppeneu1-secondary.z16.web.core.windows.net/","blob":"https://admppeneu1-secondary.blob.core.windows.net/","queue":"https://admppeneu1-secondary.queue.core.windows.net/","table":"https://admppeneu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcineu1","name":"admcineu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:22.2583722Z","primaryEndpoints":{"dfs":"https://admcineu1.dfs.core.windows.net/","web":"https://admcineu1.z16.web.core.windows.net/","blob":"https://admcineu1.blob.core.windows.net/","queue":"https://admcineu1.queue.core.windows.net/","table":"https://admcineu1.table.core.windows.net/","file":"https://admcineu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcineu1-secondary.dfs.core.windows.net/","web":"https://admcineu1-secondary.z16.web.core.windows.net/","blob":"https://admcineu1-secondary.blob.core.windows.net/","queue":"https://admcineu1-secondary.queue.core.windows.net/","table":"https://admcineu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag","name":"msadmdiag","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-11T19:39:03.2334811Z","primaryEndpoints":{"blob":"https://msadmdiag.blob.core.windows.net/","queue":"https://msadmdiag.queue.core.windows.net/","table":"https://msadmdiag.table.core.windows.net/","file":"https://msadmdiag.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimAdmTutorialServiceEUSrg/providers/Microsoft.Storage/storageAccounts/4v5c3k5mowmhe","name":"4v5c3k5mowmhe","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-10T03:33:10.1309116Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-12-10T03:33:10.1309116Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-10T03:33:10.0528092Z","primaryEndpoints":{"blob":"https://4v5c3k5mowmhe.blob.core.windows.net/","queue":"https://4v5c3k5mowmhe.queue.core.windows.net/","table":"https://4v5c3k5mowmhe.table.core.windows.net/","file":"https://4v5c3k5mowmhe.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceEUSrg/providers/Microsoft.Storage/storageAccounts/admftstorageaccounteus","name":"admftstorageaccounteus","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-07T21:24:24.7731346Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-07T21:24:24.7731346Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-07T21:24:24.7262171Z","primaryEndpoints":{"blob":"https://admftstorageaccounteus.blob.core.windows.net/","queue":"https://admftstorageaccounteus.queue.core.windows.net/","table":"https://admftstorageaccounteus.table.core.windows.net/","file":"https://admftstorageaccounteus.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admportal/providers/Microsoft.Storage/storageAccounts/admportalstg","name":"admportalstg","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T20:27:45.0356859Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-28T20:27:45.0356859Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-28T20:27:44.9888054Z","primaryEndpoints":{"dfs":"https://admportalstg.dfs.core.windows.net/","web":"https://admportalstg.z13.web.core.windows.net/","blob":"https://admportalstg.blob.core.windows.net/","queue":"https://admportalstg.queue.core.windows.net/","table":"https://admportalstg.table.core.windows.net/","file":"https://admportalstg.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.Service/providers/Microsoft.Storage/storageAccounts/admrestartftstgacct","name":"admrestartftstgacct","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T23:00:24.4175921Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-01-14T23:00:24.4175921Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-14T23:00:24.3394273Z","primaryEndpoints":{"blob":"https://admrestartftstgacct.blob.core.windows.net/","queue":"https://admrestartftstgacct.queue.core.windows.net/","table":"https://admrestartftstgacct.table.core.windows.net/","file":"https://admrestartftstgacct.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-synthetics-prod/providers/Microsoft.Storage/storageAccounts/admsyntheticsproddiag","name":"admsyntheticsproddiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-12-10T17:49:10.8633301Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-10T17:49:10.7539587Z","primaryEndpoints":{"blob":"https://admsyntheticsproddiag.blob.core.windows.net/","queue":"https://admsyntheticsproddiag.queue.core.windows.net/","table":"https://admsyntheticsproddiag.table.core.windows.net/","file":"https://admsyntheticsproddiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-quickstart/providers/Microsoft.Storage/storageAccounts/ev2testquickstartdiag","name":"ev2testquickstartdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-22T22:26:56.1714760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-22T22:26:56.1714760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-22T22:26:56.1089792Z","primaryEndpoints":{"blob":"https://ev2testquickstartdiag.blob.core.windows.net/","queue":"https://ev2testquickstartdiag.queue.core.windows.net/","table":"https://ev2testquickstartdiag.table.core.windows.net/","file":"https://ev2testquickstartdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-swtamrak/providers/Microsoft.Storage/storageAccounts/ev2testswtamrakdiag","name":"ev2testswtamrakdiag","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-03T18:30:06.9673236Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-10-03T18:30:06.9673236Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-03T18:30:06.9048055Z","primaryEndpoints":{"blob":"https://ev2testswtamrakdiag.blob.core.windows.net/","queue":"https://ev2testswtamrakdiag.queue.core.windows.net/","table":"https://ev2testswtamrakdiag.table.core.windows.net/","file":"https://ev2testswtamrakdiag.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mandardev-Migrated/providers/Microsoft.Storage/storageAccounts/mandardev","name":"mandardev","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-07T20:32:29.3348874Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2017-11-04T07:08:13.0835184Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-29T20:36:41.4942538Z","primaryEndpoints":{"blob":"https://mandardev.blob.core.windows.net/","queue":"https://mandardev.queue.core.windows.net/","table":"https://mandardev.table.core.windows.net/","file":"https://mandardev.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceEUSrg/providers/Microsoft.Storage/storageAccounts/odgl6zpjcwo5g","name":"odgl6zpjcwo5g","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2018-10-23T22:07:59.9695255Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:07:59.7976368Z","primaryEndpoints":{"blob":"https://odgl6zpjcwo5g.blob.core.windows.net/","queue":"https://odgl6zpjcwo5g.queue.core.windows.net/","table":"https://odgl6zpjcwo5g.table.core.windows.net/","file":"https://odgl6zpjcwo5g.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus21","name":"admcieus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:15.3941703Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:15.1754902Z","primaryEndpoints":{"dfs":"https://admcieus21.dfs.core.windows.net/","web":"https://admcieus21.z20.web.core.windows.net/","blob":"https://admcieus21.blob.core.windows.net/","queue":"https://admcieus21.queue.core.windows.net/","table":"https://admcieus21.table.core.windows.net/","file":"https://admcieus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus21-secondary.dfs.core.windows.net/","web":"https://admcieus21-secondary.z20.web.core.windows.net/","blob":"https://admcieus21-secondary.blob.core.windows.net/","queue":"https://admcieus21-secondary.queue.core.windows.net/","table":"https://admcieus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcieus22","name":"admcieus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:19:59.7203130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:19:59.5640997Z","primaryEndpoints":{"dfs":"https://admcieus22.dfs.core.windows.net/","web":"https://admcieus22.z20.web.core.windows.net/","blob":"https://admcieus22.blob.core.windows.net/","queue":"https://admcieus22.queue.core.windows.net/","table":"https://admcieus22.table.core.windows.net/","file":"https://admcieus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcieus22-secondary.dfs.core.windows.net/","web":"https://admcieus22-secondary.z20.web.core.windows.net/","blob":"https://admcieus22-secondary.blob.core.windows.net/","queue":"https://admcieus22-secondary.queue.core.windows.net/","table":"https://admcieus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregeus21","name":"admciregeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:22:25.2601345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:22:25.1351453Z","primaryEndpoints":{"dfs":"https://admciregeus21.dfs.core.windows.net/","web":"https://admciregeus21.z20.web.core.windows.net/","blob":"https://admciregeus21.blob.core.windows.net/","queue":"https://admciregeus21.queue.core.windows.net/","table":"https://admciregeus21.table.core.windows.net/","file":"https://admciregeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregeus21-secondary.dfs.core.windows.net/","web":"https://admciregeus21-secondary.z20.web.core.windows.net/","blob":"https://admciregeus21-secondary.blob.core.windows.net/","queue":"https://admciregeus21-secondary.queue.core.windows.net/","table":"https://admciregeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus21","name":"admppeeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:01.2856868Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:01.1138624Z","primaryEndpoints":{"dfs":"https://admppeeus21.dfs.core.windows.net/","web":"https://admppeeus21.z20.web.core.windows.net/","blob":"https://admppeeus21.blob.core.windows.net/","queue":"https://admppeeus21.queue.core.windows.net/","table":"https://admppeeus21.table.core.windows.net/","file":"https://admppeeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus21-secondary.dfs.core.windows.net/","web":"https://admppeeus21-secondary.z20.web.core.windows.net/","blob":"https://admppeeus21-secondary.blob.core.windows.net/","queue":"https://admppeeus21-secondary.queue.core.windows.net/","table":"https://admppeeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeeus22","name":"admppeeus22","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:24.4094830Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:24.2368190Z","primaryEndpoints":{"dfs":"https://admppeeus22.dfs.core.windows.net/","web":"https://admppeeus22.z20.web.core.windows.net/","blob":"https://admppeeus22.blob.core.windows.net/","queue":"https://admppeeus22.queue.core.windows.net/","table":"https://admppeeus22.table.core.windows.net/","file":"https://admppeeus22.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeeus22-secondary.dfs.core.windows.net/","web":"https://admppeeus22-secondary.z20.web.core.windows.net/","blob":"https://admppeeus22-secondary.blob.core.windows.net/","queue":"https://admppeeus22-secondary.queue.core.windows.net/","table":"https://admppeeus22-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegeus21","name":"admpperegeus21","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:04:52.5843805Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:04:52.4281644Z","primaryEndpoints":{"dfs":"https://admpperegeus21.dfs.core.windows.net/","web":"https://admpperegeus21.z20.web.core.windows.net/","blob":"https://admpperegeus21.blob.core.windows.net/","queue":"https://admpperegeus21.queue.core.windows.net/","table":"https://admpperegeus21.table.core.windows.net/","file":"https://admpperegeus21.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available","secondaryLocation":"centralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegeus21-secondary.dfs.core.windows.net/","web":"https://admpperegeus21-secondary.z20.web.core.windows.net/","blob":"https://admpperegeus21-secondary.blob.core.windows.net/","queue":"https://admpperegeus21-secondary.queue.core.windows.net/","table":"https://admpperegeus21-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag342","name":"msadmdiag342","type":"Microsoft.Storage/storageAccounts","location":"eastus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-12T22:36:25.5004565Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-12T22:36:25.5004565Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-06-12T22:36:25.3754598Z","primaryEndpoints":{"blob":"https://msadmdiag342.blob.core.windows.net/","queue":"https://msadmdiag342.queue.core.windows.net/","table":"https://msadmdiag342.table.core.windows.net/","file":"https://msadmdiag342.file.core.windows.net/"},"primaryLocation":"eastus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciwus1","name":"admciwus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:20:37.0081636Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:20:36.8362556Z","primaryEndpoints":{"dfs":"https://admciwus1.dfs.core.windows.net/","web":"https://admciwus1.z22.web.core.windows.net/","blob":"https://admciwus1.blob.core.windows.net/","queue":"https://admciwus1.queue.core.windows.net/","table":"https://admciwus1.table.core.windows.net/","file":"https://admciwus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciwus1-secondary.dfs.core.windows.net/","web":"https://admciwus1-secondary.z22.web.core.windows.net/","blob":"https://admciwus1-secondary.blob.core.windows.net/","queue":"https://admciwus1-secondary.queue.core.windows.net/","table":"https://admciwus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-client-validations/providers/Microsoft.Storage/storageAccounts/admclientvalidationsdiag","name":"admclientvalidationsdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-03T00:45:31.3981051Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-03T00:45:31.3981051Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-03T00:45:31.3044047Z","primaryEndpoints":{"blob":"https://admclientvalidationsdiag.blob.core.windows.net/","queue":"https://admclientvalidationsdiag.queue.core.windows.net/","table":"https://admclientvalidationsdiag.table.core.windows.net/","file":"https://admclientvalidationsdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceWUSrg/providers/Microsoft.Storage/storageAccounts/admftstorageaccountwus","name":"admftstorageaccountwus","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-07T21:24:06.7187651Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-07T21:24:06.7187651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-07T21:24:06.6249690Z","primaryEndpoints":{"blob":"https://admftstorageaccountwus.blob.core.windows.net/","queue":"https://admftstorageaccountwus.queue.core.windows.net/","table":"https://admftstorageaccountwus.table.core.windows.net/","file":"https://admftstorageaccountwus.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppewus1","name":"admppewus1","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:02:47.7786110Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:02:47.5598191Z","primaryEndpoints":{"dfs":"https://admppewus1.dfs.core.windows.net/","web":"https://admppewus1.z22.web.core.windows.net/","blob":"https://admppewus1.blob.core.windows.net/","queue":"https://admppewus1.queue.core.windows.net/","table":"https://admppewus1.table.core.windows.net/","file":"https://admppewus1.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppewus1-secondary.dfs.core.windows.net/","web":"https://admppewus1-secondary.z22.web.core.windows.net/","blob":"https://admppewus1-secondary.blob.core.windows.net/","queue":"https://admppewus1-secondary.queue.core.windows.net/","table":"https://admppewus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurefunctions-westus/providers/Microsoft.Storage/storageAccounts/azurefunctionsef89fd26","name":"azurefunctionsef89fd26","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6319661Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T00:41:49.5340063Z","primaryEndpoints":{"blob":"https://azurefunctionsef89fd26.blob.core.windows.net/","queue":"https://azurefunctionsef89fd26.queue.core.windows.net/","table":"https://azurefunctionsef89fd26.table.core.windows.net/","file":"https://azurefunctionsef89fd26.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-westus/providers/Microsoft.Storage/storageAccounts/cs453012dcb5039x4e96x8e6","name":"cs453012dcb5039x4e96x8e6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-12T18:58:59.8070555Z","primaryEndpoints":{"blob":"https://cs453012dcb5039x4e96x8e6.blob.core.windows.net/","queue":"https://cs453012dcb5039x4e96x8e6.queue.core.windows.net/","table":"https://cs453012dcb5039x4e96x8e6.table.core.windows.net/","file":"https://cs453012dcb5039x4e96x8e6.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimadmqs1/providers/Microsoft.Storage/storageAccounts/deoletimadmqs1stg","name":"deoletimadmqs1stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:58:02.4874839Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:58:02.4874839Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T22:58:02.2999705Z","primaryEndpoints":{"dfs":"https://deoletimadmqs1stg.dfs.core.windows.net/","web":"https://deoletimadmqs1stg.z22.web.core.windows.net/","blob":"https://deoletimadmqs1stg.blob.core.windows.net/","queue":"https://deoletimadmqs1stg.queue.core.windows.net/","table":"https://deoletimadmqs1stg.table.core.windows.net/","file":"https://deoletimadmqs1stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletim-adm-qs_fix/providers/Microsoft.Storage/storageAccounts/deoletimadmqs252stg","name":"deoletimadmqs252stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:53:38.0463747Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:53:38.0463747Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T22:53:37.7338928Z","primaryEndpoints":{"dfs":"https://deoletimadmqs252stg.dfs.core.windows.net/","web":"https://deoletimadmqs252stg.z22.web.core.windows.net/","blob":"https://deoletimadmqs252stg.blob.core.windows.net/","queue":"https://deoletimadmqs252stg.queue.core.windows.net/","table":"https://deoletimadmqs252stg.table.core.windows.net/","file":"https://deoletimadmqs252stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletim-adm-qs_fix2/providers/Microsoft.Storage/storageAccounts/deoletimadmqsfi279stg","name":"deoletimadmqsfi279stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T23:06:36.1853821Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T23:06:36.1853821Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T23:06:35.9510035Z","primaryEndpoints":{"dfs":"https://deoletimadmqsfi279stg.dfs.core.windows.net/","web":"https://deoletimadmqsfi279stg.z22.web.core.windows.net/","blob":"https://deoletimadmqsfi279stg.blob.core.windows.net/","queue":"https://deoletimadmqsfi279stg.queue.core.windows.net/","table":"https://deoletimadmqsfi279stg.table.core.windows.net/","file":"https://deoletimadmqsfi279stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimAdmQs/providers/Microsoft.Storage/storageAccounts/deoletimadmqsstg","name":"deoletimadmqsstg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-11T01:08:06.9479803Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-11T01:08:06.9479803Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-05-11T01:08:06.7917354Z","primaryEndpoints":{"dfs":"https://deoletimadmqsstg.dfs.core.windows.net/","web":"https://deoletimadmqsstg.z22.web.core.windows.net/","blob":"https://deoletimadmqsstg.blob.core.windows.net/","queue":"https://deoletimadmqsstg.queue.core.windows.net/","table":"https://deoletimadmqsstg.table.core.windows.net/","file":"https://deoletimadmqsstg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deo-qs_fix2/providers/Microsoft.Storage/storageAccounts/deoqsfix224stg","name":"deoqsfix224stg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-25T22:20:03.2176611Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-25T22:20:03.2176611Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-25T22:20:03.0145310Z","primaryEndpoints":{"dfs":"https://deoqsfix224stg.dfs.core.windows.net/","web":"https://deoqsfix224stg.z22.web.core.windows.net/","blob":"https://deoqsfix224stg.blob.core.windows.net/","queue":"https://deoqsfix224stg.queue.core.windows.net/","table":"https://deoqsfix224stg.table.core.windows.net/","file":"https://deoqsfix224stg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/ev2testdeveshstgv2","name":"ev2testdeveshstgv2","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-03T22:42:23.8897348Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-03T22:42:23.8897348Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-03T22:42:23.8428698Z","primaryEndpoints":{"dfs":"https://ev2testdeveshstgv2.dfs.core.windows.net/","web":"https://ev2testdeveshstgv2.z22.web.core.windows.net/","blob":"https://ev2testdeveshstgv2.blob.core.windows.net/","queue":"https://ev2testdeveshstgv2.queue.core.windows.net/","table":"https://ev2testdeveshstgv2.table.core.windows.net/","file":"https://ev2testdeveshstgv2.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ev2testdeveshstgv2-secondary.dfs.core.windows.net/","web":"https://ev2testdeveshstgv2-secondary.z22.web.core.windows.net/","blob":"https://ev2testdeveshstgv2-secondary.blob.core.windows.net/","queue":"https://ev2testdeveshstgv2-secondary.queue.core.windows.net/","table":"https://ev2testdeveshstgv2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-iris/providers/Microsoft.Storage/storageAccounts/ev2testirisdiag","name":"ev2testirisdiag","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-05-14T15:24:43.8861136Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-05-14T15:24:43.8861136Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-05-14T15:24:43.7767414Z","primaryEndpoints":{"blob":"https://ev2testirisdiag.blob.core.windows.net/","queue":"https://ev2testirisdiag.queue.core.windows.net/","table":"https://ev2testirisdiag.table.core.windows.net/","file":"https://ev2testirisdiag.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sampletestresourcegroup/providers/Microsoft.Storage/storageAccounts/g3uktb4im6td2functions","name":"g3uktb4im6td2functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:03.6475356Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-03-01T02:01:53.9239903Z","primaryEndpoints":{"blob":"https://g3uktb4im6td2functions.blob.core.windows.net/","queue":"https://g3uktb4im6td2functions.queue.core.windows.net/","table":"https://g3uktb4im6td2functions.table.core.windows.net/","file":"https://g3uktb4im6td2functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADMFTs.ServiceWUSrg/providers/Microsoft.Storage/storageAccounts/in7tlbyhwo3ss","name":"in7tlbyhwo3ss","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-23T22:08:04.4427104Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-23T22:08:04.3489449Z","primaryEndpoints":{"blob":"https://in7tlbyhwo3ss.blob.core.windows.net/","queue":"https://in7tlbyhwo3ss.queue.core.windows.net/","table":"https://in7tlbyhwo3ss.table.core.windows.net/","file":"https://in7tlbyhwo3ss.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/FunctionalTestWUS/providers/Microsoft.Storage/storageAccounts/nestedev2storage","name":"nestedev2storage","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-17T21:31:20.6878195Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-17T21:31:20.5471773Z","primaryEndpoints":{"blob":"https://nestedev2storage.blob.core.windows.net/","queue":"https://nestedev2storage.queue.core.windows.net/","table":"https://nestedev2storage.table.core.windows.net/","file":"https://nestedev2storage.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adm-sdk-tests/providers/Microsoft.Storage/storageAccounts/sdktests","name":"sdktests","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-02-25T21:51:56.5394318Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-02-25T21:51:56.4144314Z","primaryEndpoints":{"dfs":"https://sdktests.dfs.core.windows.net/","web":"https://sdktests.z22.web.core.windows.net/","blob":"https://sdktests.blob.core.windows.net/","queue":"https://sdktests.queue.core.windows.net/","table":"https://sdktests.table.core.windows.net/","file":"https://sdktests.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sdktests-secondary.dfs.core.windows.net/","web":"https://sdktests-secondary.z22.web.core.windows.net/","blob":"https://sdktests-secondary.blob.core.windows.net/","queue":"https://sdktests-secondary.queue.core.windows.net/","table":"https://sdktests-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SyntheticsTests/providers/Microsoft.Storage/storageAccounts/syntheticspolicytest","name":"syntheticspolicytest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-07T00:09:13.7120296Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-07T00:09:13.7120296Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-07T00:09:13.6339034Z","primaryEndpoints":{"blob":"https://syntheticspolicytest.blob.core.windows.net/","queue":"https://syntheticspolicytest.queue.core.windows.net/","table":"https://syntheticspolicytest.table.core.windows.net/","file":"https://syntheticspolicytest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/syntheticstests/providers/Microsoft.Storage/storageAccounts/syntheticstest","name":"syntheticstest","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:34.8467572Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-09-14T00:28:41.8187324Z","primaryEndpoints":{"blob":"https://syntheticstest.blob.core.windows.net/","queue":"https://syntheticstest.queue.core.windows.net/","table":"https://syntheticstest.table.core.windows.net/","file":"https://syntheticstest.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IrisYueqiTanExpressV2-2/providers/Microsoft.Storage/storageAccounts/xrypq37bo4po4functions","name":"xrypq37bo4po4functions","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-09T00:14:17.7459884Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-09T00:14:17.6365897Z","primaryEndpoints":{"blob":"https://xrypq37bo4po4functions.blob.core.windows.net/","queue":"https://xrypq37bo4po4functions.queue.core.windows.net/","table":"https://xrypq37bo4po4functions.table.core.windows.net/","file":"https://xrypq37bo4po4functions.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimAdmTutorialServiceWUSrg/providers/Microsoft.Storage/storageAccounts/xs3hwv3kves4k","name":"xs3hwv3kves4k","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-10T03:33:01.0581049Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-10T03:33:01.0581049Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-10T03:33:00.9643580Z","primaryEndpoints":{"blob":"https://xs3hwv3kves4k.blob.core.windows.net/","queue":"https://xs3hwv3kves4k.queue.core.windows.net/","table":"https://xs3hwv3kves4k.table.core.windows.net/","file":"https://xs3hwv3kves4k.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoletimServiceWUSrg/providers/Microsoft.Storage/storageAccounts/zdydbpivpbgai","name":"zdydbpivpbgai","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-26T02:18:58.3342197Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-26T02:18:58.2404928Z","primaryEndpoints":{"blob":"https://zdydbpivpbgai.blob.core.windows.net/","queue":"https://zdydbpivpbgai.queue.core.windows.net/","table":"https://zdydbpivpbgai.table.core.windows.net/","file":"https://zdydbpivpbgai.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupwus001/providers/Microsoft.Storage/storageAccounts/zxagicpuacs2ksawinvm","name":"zxagicpuacs2ksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-27T08:57:59.4092570Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:43:09.3042958Z","primaryEndpoints":{"blob":"https://zxagicpuacs2ksawinvm.blob.core.windows.net/","queue":"https://zxagicpuacs2ksawinvm.queue.core.windows.net/","table":"https://zxagicpuacs2ksawinvm.table.core.windows.net/","file":"https://zxagicpuacs2ksawinvm.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/appsgroupweu002/providers/Microsoft.Storage/storageAccounts/h2he2t3nvdnjksawinvm","name":"h2he2t3nvdnjksawinvm","type":"Microsoft.Storage/storageAccounts","location":"westeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T22:57:23.5210135Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-03-11T21:54:35.2244069Z","primaryEndpoints":{"blob":"https://h2he2t3nvdnjksawinvm.blob.core.windows.net/","queue":"https://h2he2t3nvdnjksawinvm.queue.core.windows.net/","table":"https://h2he2t3nvdnjksawinvm.table.core.windows.net/","file":"https://h2he2t3nvdnjksawinvm.file.core.windows.net/"},"primaryLocation":"westeurope","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mscontainers/providers/Microsoft.Storage/storageAccounts/sflogsstorage","name":"sflogsstorage","type":"Microsoft.Storage/storageAccounts","location":"northcentralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-08T01:13:21.7706416Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-08T01:13:21.7706416Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-11-08T01:13:21.7080949Z","primaryEndpoints":{"blob":"https://sflogsstorage.blob.core.windows.net/","queue":"https://sflogsstorage.queue.core.windows.net/","table":"https://sflogsstorage.table.core.windows.net/","file":"https://sflogsstorage.file.core.windows.net/"},"primaryLocation":"northcentralus","statusOfPrimary":"available","secondaryLocation":"southcentralus","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://sflogsstorage-secondary.blob.core.windows.net/","queue":"https://sflogsstorage-secondary.queue.core.windows.net/","table":"https://sflogsstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus1","name":"admcicus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:03.7362270Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:03.5018652Z","primaryEndpoints":{"dfs":"https://admcicus1.dfs.core.windows.net/","web":"https://admcicus1.z19.web.core.windows.net/","blob":"https://admcicus1.blob.core.windows.net/","queue":"https://admcicus1.queue.core.windows.net/","table":"https://admcicus1.table.core.windows.net/","file":"https://admcicus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus1-secondary.dfs.core.windows.net/","web":"https://admcicus1-secondary.z19.web.core.windows.net/","blob":"https://admcicus1-secondary.blob.core.windows.net/","queue":"https://admcicus1-secondary.queue.core.windows.net/","table":"https://admcicus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcicus2","name":"admcicus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:18:42.4813022Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:18:42.3250263Z","primaryEndpoints":{"dfs":"https://admcicus2.dfs.core.windows.net/","web":"https://admcicus2.z19.web.core.windows.net/","blob":"https://admcicus2.blob.core.windows.net/","queue":"https://admcicus2.queue.core.windows.net/","table":"https://admcicus2.table.core.windows.net/","file":"https://admcicus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcicus2-secondary.dfs.core.windows.net/","web":"https://admcicus2-secondary.z19.web.core.windows.net/","blob":"https://admcicus2-secondary.blob.core.windows.net/","queue":"https://admcicus2-secondary.queue.core.windows.net/","table":"https://admcicus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admciregcus1","name":"admciregcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:56.5424828Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:56.3705617Z","primaryEndpoints":{"dfs":"https://admciregcus1.dfs.core.windows.net/","web":"https://admciregcus1.z19.web.core.windows.net/","blob":"https://admciregcus1.blob.core.windows.net/","queue":"https://admciregcus1.queue.core.windows.net/","table":"https://admciregcus1.table.core.windows.net/","file":"https://admciregcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admciregcus1-secondary.dfs.core.windows.net/","web":"https://admciregcus1-secondary.z19.web.core.windows.net/","blob":"https://admciregcus1-secondary.blob.core.windows.net/","queue":"https://admciregcus1-secondary.queue.core.windows.net/","table":"https://admciregcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/admdemofunc","name":"admdemofunc","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-04-05T17:20:35.4231344Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-04-05T17:20:35.2825103Z","primaryEndpoints":{"blob":"https://admdemofunc.blob.core.windows.net/","queue":"https://admdemofunc.queue.core.windows.net/","table":"https://admdemofunc.table.core.windows.net/","file":"https://admdemofunc.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus1","name":"admppecus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:00:55.4677889Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:00:55.3271375Z","primaryEndpoints":{"dfs":"https://admppecus1.dfs.core.windows.net/","web":"https://admppecus1.z19.web.core.windows.net/","blob":"https://admppecus1.blob.core.windows.net/","queue":"https://admppecus1.queue.core.windows.net/","table":"https://admppecus1.table.core.windows.net/","file":"https://admppecus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus1-secondary.dfs.core.windows.net/","web":"https://admppecus1-secondary.z19.web.core.windows.net/","blob":"https://admppecus1-secondary.blob.core.windows.net/","queue":"https://admppecus1-secondary.queue.core.windows.net/","table":"https://admppecus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppecus2","name":"admppecus2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:01:28.4633371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:01:28.3032730Z","primaryEndpoints":{"dfs":"https://admppecus2.dfs.core.windows.net/","web":"https://admppecus2.z19.web.core.windows.net/","blob":"https://admppecus2.blob.core.windows.net/","queue":"https://admppecus2.queue.core.windows.net/","table":"https://admppecus2.table.core.windows.net/","file":"https://admppecus2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppecus2-secondary.dfs.core.windows.net/","web":"https://admppecus2-secondary.z19.web.core.windows.net/","blob":"https://admppecus2-secondary.blob.core.windows.net/","queue":"https://admppecus2-secondary.queue.core.windows.net/","table":"https://admppecus2-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admpperegcus1","name":"admpperegcus1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:49.8269581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:49.6550587Z","primaryEndpoints":{"dfs":"https://admpperegcus1.dfs.core.windows.net/","web":"https://admpperegcus1.z19.web.core.windows.net/","blob":"https://admpperegcus1.blob.core.windows.net/","queue":"https://admpperegcus1.queue.core.windows.net/","table":"https://admpperegcus1.table.core.windows.net/","file":"https://admpperegcus1.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admpperegcus1-secondary.dfs.core.windows.net/","web":"https://admpperegcus1-secondary.z19.web.core.windows.net/","blob":"https://admpperegcus1-secondary.blob.core.windows.net/","queue":"https://admpperegcus1-secondary.queue.core.windows.net/","table":"https://admpperegcus1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDKustoCI/providers/Microsoft.Storage/storageAccounts/asdcikustoingestcus","name":"asdcikustoingestcus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-17T21:56:25.2222001Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-17T21:56:25.2222001Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-17T21:56:25.1128259Z","primaryEndpoints":{"dfs":"https://asdcikustoingestcus.dfs.core.windows.net/","web":"https://asdcikustoingestcus.z19.web.core.windows.net/","blob":"https://asdcikustoingestcus.blob.core.windows.net/","queue":"https://asdcikustoingestcus.queue.core.windows.net/","table":"https://asdcikustoingestcus.table.core.windows.net/","file":"https://asdcikustoingestcus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://asdcikustoingestcus-secondary.dfs.core.windows.net/","web":"https://asdcikustoingestcus-secondary.z19.web.core.windows.net/","blob":"https://asdcikustoingestcus-secondary.blob.core.windows.net/","queue":"https://asdcikustoingestcus-secondary.queue.core.windows.net/","table":"https://asdcikustoingestcus-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/asdcishellpublishcus","name":"asdcishellpublishcus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:15:04.4662099Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:15:04.3412061Z","primaryEndpoints":{"blob":"https://asdcishellpublishcus.blob.core.windows.net/","queue":"https://asdcishellpublishcus.queue.core.windows.net/","table":"https://asdcishellpublishcus.table.core.windows.net/","file":"https://asdcishellpublishcus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDCIShell/providers/Microsoft.Storage/storageAccounts/azureservicedep8b10","name":"azureservicedep8b10","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-13T02:08:37.1405836Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-13T02:08:37.0155870Z","primaryEndpoints":{"blob":"https://azureservicedep8b10.blob.core.windows.net/","queue":"https://azureservicedep8b10.queue.core.windows.net/","table":"https://azureservicedep8b10.table.core.windows.net/","file":"https://azureservicedep8b10.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestAutoRestartEndToEndRG/providers/Microsoft.Storage/storageAccounts/chbatraftauto","name":"chbatraftauto","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-09T23:16:09.4018964Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-09T23:16:09.4018964Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-09T23:16:09.3081610Z","primaryEndpoints":{"dfs":"https://chbatraftauto.dfs.core.windows.net/","web":"https://chbatraftauto.z19.web.core.windows.net/","blob":"https://chbatraftauto.blob.core.windows.net/","queue":"https://chbatraftauto.queue.core.windows.net/","table":"https://chbatraftauto.table.core.windows.net/","file":"https://chbatraftauto.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://chbatraftauto-secondary.dfs.core.windows.net/","web":"https://chbatraftauto-secondary.z19.web.core.windows.net/","blob":"https://chbatraftauto-secondary.blob.core.windows.net/","queue":"https://chbatraftauto-secondary.queue.core.windows.net/","table":"https://chbatraftauto-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm6z5mo7/providers/Microsoft.Storage/storageAccounts/cliadmimivhpssdo5mx4azhh","name":"cliadmimivhpssdo5mx4azhh","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-29T01:44:48.7622213Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-29T01:44:48.7622213Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-12-29T01:44:48.6997111Z","primaryEndpoints":{"blob":"https://cliadmimivhpssdo5mx4azhh.blob.core.windows.net/","queue":"https://cliadmimivhpssdo5mx4azhh.queue.core.windows.net/","table":"https://cliadmimivhpssdo5mx4azhh.table.core.windows.net/","file":"https://cliadmimivhpssdo5mx4azhh.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm2bzwgl/providers/Microsoft.Storage/storageAccounts/cliadmmuypsio34m2tc2wbbz","name":"cliadmmuypsio34m2tc2wbbz","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-07T03:12:31.6768474Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-07T03:12:31.6768474Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-07T03:12:31.5830752Z","primaryEndpoints":{"blob":"https://cliadmmuypsio34m2tc2wbbz.blob.core.windows.net/","queue":"https://cliadmmuypsio34m2tc2wbbz.queue.core.windows.net/","table":"https://cliadmmuypsio34m2tc2wbbz.table.core.windows.net/","file":"https://cliadmmuypsio34m2tc2wbbz.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002","name":"cliadm000002","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-15T00:10:18.3505549Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-15T00:10:18.3505549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-15T00:10:18.2411715Z","primaryEndpoints":{"blob":"https://cliadm000002.blob.core.windows.net/","queue":"https://cliadm000002.queue.core.windows.net/","table":"https://cliadm000002.table.core.windows.net/","file":"https://cliadm000002.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/deoadmqsval/providers/Microsoft.Storage/storageAccounts/deoadmqsval41stg","name":"deoadmqsval41stg","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-12-12T15:03:32.8822218Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-12-12T15:03:32.8822218Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-12-12T15:03:32.7886326Z","primaryEndpoints":{"dfs":"https://deoadmqsval41stg.dfs.core.windows.net/","web":"https://deoadmqsval41stg.z19.web.core.windows.net/","blob":"https://deoadmqsval41stg.blob.core.windows.net/","queue":"https://deoadmqsval41stg.queue.core.windows.net/","table":"https://deoadmqsval41stg.table.core.windows.net/","file":"https://deoadmqsval41stg.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-devesh/providers/Microsoft.Storage/storageAccounts/ev2rptesttemplate","name":"ev2rptesttemplate","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-04T17:18:26.7449298Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-09-04T17:18:26.5730345Z","primaryEndpoints":{"blob":"https://ev2rptesttemplate.blob.core.windows.net/","queue":"https://ev2rptesttemplate.queue.core.windows.net/","table":"https://ev2rptesttemplate.table.core.windows.net/","file":"https://ev2rptesttemplate.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2testadmqs/providers/Microsoft.Storage/storageAccounts/ev2testadmqsstg","name":"ev2testadmqsstg","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-06-24T22:31:13.3396776Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-06-24T22:31:13.3396776Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-24T22:31:13.2459309Z","primaryEndpoints":{"dfs":"https://ev2testadmqsstg.dfs.core.windows.net/","web":"https://ev2testadmqsstg.z19.web.core.windows.net/","blob":"https://ev2testadmqsstg.blob.core.windows.net/","queue":"https://ev2testadmqsstg.queue.core.windows.net/","table":"https://ev2testadmqsstg.table.core.windows.net/","file":"https://ev2testadmqsstg.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-quickstart/providers/Microsoft.Storage/storageAccounts/ev2testquickstartdiag440","name":"ev2testquickstartdiag440","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-23T21:07:28.0398002Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-23T21:07:28.0398002Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-23T21:07:27.9617305Z","primaryEndpoints":{"blob":"https://ev2testquickstartdiag440.blob.core.windows.net/","queue":"https://ev2testquickstartdiag440.queue.core.windows.net/","table":"https://ev2testquickstartdiag440.table.core.windows.net/","file":"https://ev2testquickstartdiag440.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-swtamrak/providers/Microsoft.Storage/storageAccounts/ev2testswtamrakdiag190","name":"ev2testswtamrakdiag190","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-10T23:26:09.4084588Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-10T23:26:09.4084588Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-10T23:26:09.3147309Z","primaryEndpoints":{"blob":"https://ev2testswtamrakdiag190.blob.core.windows.net/","queue":"https://ev2testswtamrakdiag190.queue.core.windows.net/","table":"https://ev2testswtamrakdiag190.table.core.windows.net/","file":"https://ev2testswtamrakdiag190.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestNoRolloutPolicy001/providers/Microsoft.Storage/storageAccounts/ftnorolloutpolicy001","name":"ftnorolloutpolicy001","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-29T03:55:36.6836980Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-29T03:55:36.6836980Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-10-29T03:55:36.5898989Z","primaryEndpoints":{"dfs":"https://ftnorolloutpolicy001.dfs.core.windows.net/","web":"https://ftnorolloutpolicy001.z19.web.core.windows.net/","blob":"https://ftnorolloutpolicy001.blob.core.windows.net/","queue":"https://ftnorolloutpolicy001.queue.core.windows.net/","table":"https://ftnorolloutpolicy001.table.core.windows.net/","file":"https://ftnorolloutpolicy001.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ftnorolloutpolicy001-secondary.dfs.core.windows.net/","web":"https://ftnorolloutpolicy001-secondary.z19.web.core.windows.net/","blob":"https://ftnorolloutpolicy001-secondary.blob.core.windows.net/","queue":"https://ftnorolloutpolicy001-secondary.queue.core.windows.net/","table":"https://ftnorolloutpolicy001-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ev2test-vinnie/providers/Microsoft.Storage/storageAccounts/functionadf46d78abf7","name":"functionadf46d78abf7","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2016-07-12T22:23:47.6971972Z","primaryEndpoints":{"blob":"https://functionadf46d78abf7.blob.core.windows.net/","queue":"https://functionadf46d78abf7.queue.core.windows.net/","table":"https://functionadf46d78abf7.table.core.windows.net/","file":"https://functionadf46d78abf7.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1021036903xt","name":"gsm1021036903xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestauditusc","GenevaWPStorageGroupName":"asdtestaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:48.0820079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:48.0506370Z","primaryEndpoints":{"blob":"https://gsm1021036903xt.blob.core.windows.net/","queue":"https://gsm1021036903xt.queue.core.windows.net/","table":"https://gsm1021036903xt.table.core.windows.net/","file":"https://gsm1021036903xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm1048699176xt","name":"gsm1048699176xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeployciauditusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeployciaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3004843Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.8954242Z","primaryEndpoints":{"blob":"https://gsm1048699176xt.blob.core.windows.net/","queue":"https://gsm1048699176xt.queue.core.windows.net/","table":"https://gsm1048699176xt.table.core.windows.net/","file":"https://gsm1048699176xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1308418995xt","name":"gsm1308418995xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.5822357Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.4103606Z","primaryEndpoints":{"blob":"https://gsm1308418995xt.blob.core.windows.net/","queue":"https://gsm1308418995xt.queue.core.windows.net/","table":"https://gsm1308418995xt.table.core.windows.net/","file":"https://gsm1308418995xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1377010013xt","name":"gsm1377010013xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevusc","GenevaWPStorageGroupName":"admdev"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:05:16.5100020Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:05:16.3693631Z","primaryEndpoints":{"blob":"https://gsm1377010013xt.blob.core.windows.net/","queue":"https://gsm1377010013xt.queue.core.windows.net/","table":"https://gsm1377010013xt.table.core.windows.net/","file":"https://gsm1377010013xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1630685468xt","name":"gsm1630685468xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.6447348Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.5041089Z","primaryEndpoints":{"blob":"https://gsm1630685468xt.blob.core.windows.net/","queue":"https://gsm1630685468xt.queue.core.windows.net/","table":"https://gsm1630685468xt.table.core.windows.net/","file":"https://gsm1630685468xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1664594389xt","name":"gsm1664594389xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestdiagusc","GenevaWPStorageGroupName":"asdtestdiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.9881440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.9569044Z","primaryEndpoints":{"blob":"https://gsm1664594389xt.blob.core.windows.net/","queue":"https://gsm1664594389xt.queue.core.windows.net/","table":"https://gsm1664594389xt.table.core.windows.net/","file":"https://gsm1664594389xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm1968177553xt","name":"gsm1968177553xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevsecurityusc","GenevaWPStorageGroupName":"admdevsecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:09:12.7074906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:09:12.5668554Z","primaryEndpoints":{"blob":"https://gsm1968177553xt.blob.core.windows.net/","queue":"https://gsm1968177553xt.queue.core.windows.net/","table":"https://gsm1968177553xt.table.core.windows.net/","file":"https://gsm1968177553xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm212609152xt","name":"gsm212609152xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycidiagusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycidiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3160764Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:39.3494589Z","primaryEndpoints":{"blob":"https://gsm212609152xt.blob.core.windows.net/","queue":"https://gsm212609152xt.queue.core.windows.net/","table":"https://gsm212609152xt.table.core.windows.net/","file":"https://gsm212609152xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/genevawarmpathmanagerg/providers/Microsoft.Storage/storageAccounts/gsm329968443xt","name":"gsm329968443xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPMonikerName":"azureservicedeploycisecurityusc","GenevaWPNamespaceName":"AzureServiceDeployCI","GenevaWPStorageGroupName":"azureservicedeploycisecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3473096Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-11-17T19:32:38.5073939Z","primaryEndpoints":{"blob":"https://gsm329968443xt.blob.core.windows.net/","queue":"https://gsm329968443xt.queue.core.windows.net/","table":"https://gsm329968443xt.table.core.windows.net/","file":"https://gsm329968443xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm443216504xt","name":"gsm443216504xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevauditusc","GenevaWPStorageGroupName":"admdevaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:59.6540022Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:59.2477536Z","primaryEndpoints":{"blob":"https://gsm443216504xt.blob.core.windows.net/","queue":"https://gsm443216504xt.queue.core.windows.net/","table":"https://gsm443216504xt.table.core.windows.net/","file":"https://gsm443216504xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm621654276xt","name":"gsm621654276xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admdev","GenevaWPMonikerName":"admdevdiagusc","GenevaWPStorageGroupName":"admdevdiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-16T00:07:00.5707907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-16T00:07:00.4301168Z","primaryEndpoints":{"blob":"https://gsm621654276xt.blob.core.windows.net/","queue":"https://gsm621654276xt.queue.core.windows.net/","table":"https://gsm621654276xt.table.core.windows.net/","file":"https://gsm621654276xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm623896857xt","name":"gsm623896857xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admciauditusc","GenevaWPStorageGroupName":"admciaudit"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.2630141Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.2161393Z","primaryEndpoints":{"blob":"https://gsm623896857xt.blob.core.windows.net/","queue":"https://gsm623896857xt.queue.core.windows.net/","table":"https://gsm623896857xt.table.core.windows.net/","file":"https://gsm623896857xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm657996542xt","name":"gsm657996542xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ASDTest","GenevaWPMonikerName":"asdtestsecurityusc","GenevaWPStorageGroupName":"asdtestsecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-02-02T00:09:47.3939410Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-02-02T00:09:47.3626988Z","primaryEndpoints":{"blob":"https://gsm657996542xt.blob.core.windows.net/","queue":"https://gsm657996542xt.queue.core.windows.net/","table":"https://gsm657996542xt.table.core.windows.net/","file":"https://gsm657996542xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm860356163xt","name":"gsm860356163xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployDev","GenevaWPNamespaceName":"admci","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-06-15T23:46:35.8478650Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-06-15T23:46:35.7072672Z","primaryEndpoints":{"blob":"https://gsm860356163xt.blob.core.windows.net/","queue":"https://gsm860356163xt.queue.core.windows.net/","table":"https://gsm860356163xt.table.core.windows.net/","file":"https://gsm860356163xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm898591314xt","name":"gsm898591314xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcisecurityusc","GenevaWPStorageGroupName":"admcisecurity"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.4661259Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.4349606Z","primaryEndpoints":{"blob":"https://gsm898591314xt.blob.core.windows.net/","queue":"https://gsm898591314xt.queue.core.windows.net/","table":"https://gsm898591314xt.table.core.windows.net/","file":"https://gsm898591314xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/GenevaWarmPathManageRG/providers/Microsoft.Storage/storageAccounts/gsm918600515xt","name":"gsm918600515xt","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"GenevaWPAccountName":"AzureServiceDeployCI","GenevaWPNamespaceName":"ADMCI","GenevaWPMonikerName":"admcidiagusc","GenevaWPStorageGroupName":"admcidiag"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-31T23:57:25.1067646Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-01-31T23:57:25.0755113Z","primaryEndpoints":{"blob":"https://gsm918600515xt.blob.core.windows.net/","queue":"https://gsm918600515xt.queue.core.windows.net/","table":"https://gsm918600515xt.table.core.windows.net/","file":"https://gsm918600515xt.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/HrpAuthMetadataEndpoint/providers/Microsoft.Storage/storageAccounts/hrpauthmetadata9077","name":"hrpauthmetadata9077","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-03-22T07:02:51.0260807Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-03-22T07:02:50.9479282Z","primaryEndpoints":{"blob":"https://hrpauthmetadata9077.blob.core.windows.net/","queue":"https://hrpauthmetadata9077.queue.core.windows.net/","table":"https://hrpauthmetadata9077.table.core.windows.net/","file":"https://hrpauthmetadata9077.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hrpci/providers/Microsoft.Storage/storageAccounts/hrpci","name":"hrpci","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-09-10T19:52:39.7498631Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-09-10T19:52:39.6404170Z","primaryEndpoints":{"dfs":"https://hrpci.dfs.core.windows.net/","web":"https://hrpci.z19.web.core.windows.net/","blob":"https://hrpci.blob.core.windows.net/","queue":"https://hrpci.queue.core.windows.net/","table":"https://hrpci.table.core.windows.net/","file":"https://hrpci.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hrpci-secondary.dfs.core.windows.net/","web":"https://hrpci-secondary.z19.web.core.windows.net/","blob":"https://hrpci-secondary.blob.core.windows.net/","queue":"https://hrpci-secondary.queue.core.windows.net/","table":"https://hrpci-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jize-no-fly/providers/Microsoft.Storage/storageAccounts/jizenofly93b5","name":"jizenofly93b5","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-13T23:03:31.4759537Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-13T23:03:31.4759537Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-13T23:03:31.3821988Z","primaryEndpoints":{"blob":"https://jizenofly93b5.blob.core.windows.net/","queue":"https://jizenofly93b5.queue.core.windows.net/","table":"https://jizenofly93b5.table.core.windows.net/","file":"https://jizenofly93b5.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadmcicus/providers/Microsoft.Storage/storageAccounts/msadmcicusdiag234","name":"msadmcicusdiag234","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-01-23T21:02:21.6488026Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-01-23T21:02:21.4925713Z","primaryEndpoints":{"blob":"https://msadmcicusdiag234.blob.core.windows.net/","queue":"https://msadmcicusdiag234.queue.core.windows.net/","table":"https://msadmcicusdiag234.table.core.windows.net/","file":"https://msadmcicusdiag234.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag710","name":"msadmdiag710","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-03T21:23:22.4814586Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-03T21:23:22.4814586Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-09-03T21:23:22.3876357Z","primaryEndpoints":{"blob":"https://msadmdiag710.blob.core.windows.net/","queue":"https://msadmdiag710.queue.core.windows.net/","table":"https://msadmdiag710.table.core.windows.net/","file":"https://msadmdiag710.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MSTestStg/providers/Microsoft.Storage/storageAccounts/msteststoragecdp","name":"msteststoragecdp","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-30T20:03:35.3275076Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-11-30T20:03:35.2024915Z","primaryEndpoints":{"dfs":"https://msteststoragecdp.dfs.core.windows.net/","web":"https://msteststoragecdp.z19.web.core.windows.net/","blob":"https://msteststoragecdp.blob.core.windows.net/","queue":"https://msteststoragecdp.queue.core.windows.net/","table":"https://msteststoragecdp.table.core.windows.net/","file":"https://msteststoragecdp.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://msteststoragecdp-secondary.dfs.core.windows.net/","web":"https://msteststoragecdp-secondary.z19.web.core.windows.net/","blob":"https://msteststoragecdp-secondary.blob.core.windows.net/","queue":"https://msteststoragecdp-secondary.queue.core.windows.net/","table":"https://msteststoragecdp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/default-web-centralus/providers/Microsoft.Storage/storageAccounts/n5hoj66ysgio4functions","name":"n5hoj66ysgio4functions","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-02-16T20:58:45.5315876Z","primaryEndpoints":{"blob":"https://n5hoj66ysgio4functions.blob.core.windows.net/","queue":"https://n5hoj66ysgio4functions.queue.core.windows.net/","table":"https://n5hoj66ysgio4functions.table.core.windows.net/","file":"https://n5hoj66ysgio4functions.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/NoFlyExtTest/providers/Microsoft.Storage/storageAccounts/noflyexttest","name":"noflyexttest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-21T01:19:04.8230969Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-21T01:19:04.8230969Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-21T01:19:04.7605740Z","primaryEndpoints":{"blob":"https://noflyexttest.blob.core.windows.net/","queue":"https://noflyexttest.queue.core.windows.net/","table":"https://noflyexttest.table.core.windows.net/","file":"https://noflyexttest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RestHealthDevTest/providers/Microsoft.Storage/storageAccounts/resthealthdevte9b75","name":"resthealthdevte9b75","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:45:52.7527790Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:45:52.6434003Z","primaryEndpoints":{"blob":"https://resthealthdevte9b75.blob.core.windows.net/","queue":"https://resthealthdevte9b75.queue.core.windows.net/","table":"https://resthealthdevte9b75.table.core.windows.net/","file":"https://resthealthdevte9b75.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthfailuretest/providers/Microsoft.Storage/storageAccounts/resthealthfailu94f2","name":"resthealthfailu94f2","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-12-25T20:41:09.0533433Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-12-25T20:41:08.9283097Z","primaryEndpoints":{"blob":"https://resthealthfailu94f2.blob.core.windows.net/","queue":"https://resthealthfailu94f2.queue.core.windows.net/","table":"https://resthealthfailu94f2.table.core.windows.net/","file":"https://resthealthfailu94f2.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RestHealthPolicyTest/providers/Microsoft.Storage/storageAccounts/resthealthpolicytest","name":"resthealthpolicytest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-08-23T22:05:03.8748503Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-08-23T22:05:03.8748503Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-08-23T22:05:03.8123490Z","primaryEndpoints":{"blob":"https://resthealthpolicytest.blob.core.windows.net/","queue":"https://resthealthpolicytest.queue.core.windows.net/","table":"https://resthealthpolicytest.table.core.windows.net/","file":"https://resthealthpolicytest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resthealthtestendpoint/providers/Microsoft.Storage/storageAccounts/resthealthtest","name":"resthealthtest","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-01-10T15:57:02.3629635Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2017-10-18T19:13:44.6029902Z","primaryEndpoints":{"blob":"https://resthealthtest.blob.core.windows.net/","queue":"https://resthealthtest.queue.core.windows.net/","table":"https://resthealthtest.table.core.windows.net/","file":"https://resthealthtest.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ASDShellCI/providers/Microsoft.Storage/storageAccounts/shellpublishcicus","name":"shellpublishcicus","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-11-16T02:11:08.3190264Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-11-16T02:11:08.2096556Z","primaryEndpoints":{"blob":"https://shellpublishcicus.blob.core.windows.net/","queue":"https://shellpublishcicus.queue.core.windows.net/","table":"https://shellpublishcicus.table.core.windows.net/","file":"https://shellpublishcicus.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestHiPriPolicy/providers/Microsoft.Storage/storageAccounts/testhipripolicy","name":"testhipripolicy","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-11-25T21:46:58.6875847Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-11-25T21:46:58.6875847Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-11-25T21:46:58.5936517Z","primaryEndpoints":{"dfs":"https://testhipripolicy.dfs.core.windows.net/","web":"https://testhipripolicy.z19.web.core.windows.net/","blob":"https://testhipripolicy.blob.core.windows.net/","queue":"https://testhipripolicy.queue.core.windows.net/","table":"https://testhipripolicy.table.core.windows.net/","file":"https://testhipripolicy.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testhipripolicy-secondary.dfs.core.windows.net/","web":"https://testhipripolicy-secondary.z19.web.core.windows.net/","blob":"https://testhipripolicy-secondary.blob.core.windows.net/","queue":"https://testhipripolicy-secondary.queue.core.windows.net/","table":"https://testhipripolicy-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/poolmanager/providers/Microsoft.Storage/storageAccounts/umsakxp4zlxfrx1sh53f","name":"umsakxp4zlxfrx1sh53f","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-10-31T04:45:51.6636536Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-10-31T04:45:51.6636536Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2019-10-31T04:45:51.5698732Z","primaryEndpoints":{"blob":"https://umsakxp4zlxfrx1sh53f.blob.core.windows.net/","queue":"https://umsakxp4zlxfrx1sh53f.queue.core.windows.net/","table":"https://umsakxp4zlxfrx1sh53f.table.core.windows.net/","file":"https://umsakxp4zlxfrx1sh53f.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://umsakxp4zlxfrx1sh53f-secondary.blob.core.windows.net/","queue":"https://umsakxp4zlxfrx1sh53f-secondary.queue.core.windows.net/","table":"https://umsakxp4zlxfrx1sh53f-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admci/providers/Microsoft.Storage/storageAccounts/admcineu1","name":"admcineu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-31T19:21:22.3677324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-31T19:21:22.2583722Z","primaryEndpoints":{"dfs":"https://admcineu1.dfs.core.windows.net/","web":"https://admcineu1.z16.web.core.windows.net/","blob":"https://admcineu1.blob.core.windows.net/","queue":"https://admcineu1.queue.core.windows.net/","table":"https://admcineu1.table.core.windows.net/","file":"https://admcineu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admcineu1-secondary.dfs.core.windows.net/","web":"https://admcineu1-secondary.z16.web.core.windows.net/","blob":"https://admcineu1-secondary.blob.core.windows.net/","queue":"https://admcineu1-secondary.queue.core.windows.net/","table":"https://admcineu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/admppe/providers/Microsoft.Storage/storageAccounts/admppeneu1","name":"admppeneu1","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-08-27T22:03:18.2397796Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2018-08-27T22:03:17.9428692Z","primaryEndpoints":{"dfs":"https://admppeneu1.dfs.core.windows.net/","web":"https://admppeneu1.z16.web.core.windows.net/","blob":"https://admppeneu1.blob.core.windows.net/","queue":"https://admppeneu1.queue.core.windows.net/","table":"https://admppeneu1.table.core.windows.net/","file":"https://admppeneu1.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://admppeneu1-secondary.dfs.core.windows.net/","web":"https://admppeneu1-secondary.z16.web.core.windows.net/","blob":"https://admppeneu1-secondary.blob.core.windows.net/","queue":"https://admppeneu1-secondary.queue.core.windows.net/","table":"https://admppeneu1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ArfifactManifestWithSGRCUS/providers/Microsoft.Storage/storageAccounts/ftmanifestresswtamrak","name":"ftmanifestresswtamrak","type":"Microsoft.Storage/storageAccounts","location":"northeurope","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2019-09-12T22:59:56.1428981Z"},"blob":{"enabled":true,"lastEnabledTime":"2019-09-12T22:59:56.1428981Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-09-12T22:59:56.0648037Z","primaryEndpoints":{"dfs":"https://ftmanifestresswtamrak.dfs.core.windows.net/","web":"https://ftmanifestresswtamrak.z16.web.core.windows.net/","blob":"https://ftmanifestresswtamrak.blob.core.windows.net/","queue":"https://ftmanifestresswtamrak.queue.core.windows.net/","table":"https://ftmanifestresswtamrak.table.core.windows.net/","file":"https://ftmanifestresswtamrak.file.core.windows.net/"},"primaryLocation":"northeurope","statusOfPrimary":"available","secondaryLocation":"westeurope","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ftmanifestresswtamrak-secondary.dfs.core.windows.net/","web":"https://ftmanifestresswtamrak-secondary.z16.web.core.windows.net/","blob":"https://ftmanifestresswtamrak-secondary.blob.core.windows.net/","queue":"https://ftmanifestresswtamrak-secondary.queue.core.windows.net/","table":"https://ftmanifestresswtamrak-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/msadm/providers/Microsoft.Storage/storageAccounts/msadmdiag","name":"msadmdiag","type":"Microsoft.Storage/storageAccounts","location":"australiaeast","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"},"blob":{"enabled":true,"lastEnabledTime":"2018-10-11T19:39:03.3116353Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2018-10-11T19:39:03.2334811Z","primaryEndpoints":{"blob":"https://msadmdiag.blob.core.windows.net/","queue":"https://msadmdiag.queue.core.windows.net/","table":"https://msadmdiag.table.core.windows.net/","file":"https://msadmdiag.file.core.windows.net/"},"primaryLocation":"australiaeast","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latestvoting-rg/providers/Microsoft.Storage/storageAccounts/izvrpo24qper62","name":"izvrpo24qper62","type":"Microsoft.Storage/storageAccounts","location":"southindia","tags":{"resourceType":"Service + Fabric","clusterName":"mylatestcluster"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4706778Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4706778Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-11T21:56:03.4082240Z","primaryEndpoints":{"blob":"https://izvrpo24qper62.blob.core.windows.net/","queue":"https://izvrpo24qper62.queue.core.windows.net/","table":"https://izvrpo24qper62.table.core.windows.net/","file":"https://izvrpo24qper62.file.core.windows.net/"},"primaryLocation":"southindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/latestvoting-rg/providers/Microsoft.Storage/storageAccounts/wadizvrpo24qper63","name":"wadizvrpo24qper63","type":"Microsoft.Storage/storageAccounts","location":"southindia","tags":{"resourceType":"Service + Fabric","clusterName":"mylatestcluster"},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4550763Z"},"blob":{"enabled":true,"lastEnabledTime":"2020-01-11T21:56:03.4550763Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-01-11T21:56:03.3925946Z","primaryEndpoints":{"blob":"https://wadizvrpo24qper63.blob.core.windows.net/","queue":"https://wadizvrpo24qper63.queue.core.windows.net/","table":"https://wadizvrpo24qper63.table.core.windows.net/","file":"https://wadizvrpo24qper63.file.core.windows.net/"},"primaryLocation":"southindia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sajivar-db/providers/Microsoft.Storage/storageAccounts/sajivartest3","name":"sajivartest3","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T17:16:50.8419730Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2019-06-04T17:16:50.8419730Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2019-06-04T17:16:50.7325708Z","primaryEndpoints":{"dfs":"https://sajivartest3.dfs.core.windows.net/","web":"https://sajivartest3.z5.web.core.windows.net/","blob":"https://sajivartest3.blob.core.windows.net/","queue":"https://sajivartest3.queue.core.windows.net/","table":"https://sajivartest3.table.core.windows.net/","file":"https://sajivartest3.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://sajivartest3-secondary.dfs.core.windows.net/","web":"https://sajivartest3-secondary.z5.web.core.windows.net/","blob":"https://sajivartest3-secondary.blob.core.windows.net/","queue":"https://sajivartest3-secondary.queue.core.windows.net/","table":"https://sajivartest3-secondary.table.core.windows.net/"}}}]}' headers: cache-control: - no-cache content-length: - - '90583' + - '130074' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:40 GMT + - Wed, 15 Jan 2020 00:28:02 GMT expires: - '-1' pragma: @@ -3761,13 +4324,16 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 7ff05fbb-71d7-4f0f-bd16-2e7f7b1995f8 - - 2d6e617f-0a44-495e-9c33-65004312569c - - 021cf7ca-2972-4d78-9fea-2cc575cb318f - - 05676996-b90f-40a1-a445-6f8be103425e - - 18ab26c6-6722-4032-a2a9-b2066d0988f7 - - c438e4b8-5c6b-40d4-99ba-a01759915c1c - - 9dd8a19a-5685-44c7-8967-5f1c4c84213f + - af452575-b8ba-4b12-b133-93b6a546fb92 + - 1401fa5e-58de-45d0-aef8-0dfad19c7428 + - df522284-2fd9-4c22-93df-395b7d3b4f97 + - 6fed7642-336e-48f7-8e3b-a265c8fc06fd + - c1a13ee5-ada2-4253-9216-f872faf97d6b + - 27df4281-f26a-4cad-9f4f-9938cabec601 + - 420d22d8-b386-471a-babe-2c1477a8bf44 + - bdd358b4-3b08-486a-89dd-07e4747daee4 + - be717a4c-ce8c-4ada-813c-523847483264 + - db1c19d2-72a2-437c-b131-6f0b293fd82a status: code: 200 message: OK @@ -3787,12 +4353,12 @@ interactions: ParameterSetName: - -n --account-name --permissions --start --expiry -o User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-storage/7.0.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002/listKeys?api-version=2019-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.Storage/storageAccounts/cliadm000002/listKeys?api-version=2019-06-01 response: body: string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' @@ -3804,7 +4370,7 @@ interactions: content-type: - application/json date: - - Tue, 16 Apr 2019 21:44:40 GMT + - Wed, 15 Jan 2020 00:28:02 GMT expires: - '-1' pragma: @@ -3827,7 +4393,7 @@ interactions: - request: body: 'b''{"location": "centralus", "properties": {"sourceType": "AzureStorage", "artifactRoot": "artifactroot", "authentication": {"type": "Sas", "properties": - {"sasUri": "https://cliadm000002.blob.core.windows.net/artifacts?st=2019-04-16T20%3A44Z&se=2019-04-17T07%3A44Z&sp=rl&sv=2018-03-28&sr=c&sig=NbiSYaUJMTb6GLimGN0kNSsix2OVMnKo0SA%2BJ6mrDK8%3D"}}}}''' + {"sasUri": "https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A28Z&se=2020-01-15T10%3A28Z&sp=rl&sv=2018-11-09&sr=c&sig=VPdwL3c5XbDBPEQQdAvxt2IODQ2yvkoyqfQ34RMCs8Q%3D"}}}}''' headers: Accept: - application/json @@ -3838,30 +4404,30 @@ interactions: Connection: - keep-alive Content-Length: - - '356' + - '354' Content-Type: - application/json; charset=utf-8 ParameterSetName: - -g -n -l --sas-uri --artifact-root User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2019-11-01-preview response: body: - string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2019-04-16T20%3A44Z&se=2019-04-17T07%3A44Z&sp=rl&sv=2018-03-28&sr=c&sig=NbiSYaUJMTb6GLimGN0kNSsix2OVMnKo0SA%2BJ6mrDK8%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated","name":"cliadm000001ArtifactSourceUpdated","location":"centralus"}' + string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A28Z&se=2020-01-15T10%3A28Z&sp=rl&sv=2018-11-09&sr=c&sig=VPdwL3c5XbDBPEQQdAvxt2IODQ2yvkoyqfQ34RMCs8Q%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated","name":"cliadm000001ArtifactSourceUpdated","location":"centralus"}' headers: cache-control: - no-store, no-cache content-length: - - '681' + - '679' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:41 GMT + - Wed, 15 Jan 2020 00:28:06 GMT expires: - '-1' pragma: @@ -3873,7 +4439,7 @@ interactions: x-frame-options: - DENY x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -3891,24 +4457,24 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2019-11-01-preview response: body: - string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2019-04-16T20%3A44Z&se=2019-04-17T07%3A44Z&sp=rl&sv=2018-03-28&sr=c&sig=NbiSYaUJMTb6GLimGN0kNSsix2OVMnKo0SA%2BJ6mrDK8%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated","name":"cliadm000001ArtifactSourceUpdated","location":"centralus"}' + string: '{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A28Z&se=2020-01-15T10%3A28Z&sp=rl&sv=2018-11-09&sr=c&sig=VPdwL3c5XbDBPEQQdAvxt2IODQ2yvkoyqfQ34RMCs8Q%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated","name":"cliadm000001ArtifactSourceUpdated","location":"centralus"}' headers: cache-control: - no-store, no-cache content-length: - - '681' + - '679' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:43 GMT + - Wed, 15 Jan 2020 00:28:07 GMT expires: - '-1' pragma: @@ -3940,15 +4506,15 @@ interactions: ParameterSetName: - -g -n --artifact-source User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2019-11-01-preview response: body: - string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource"},"type":"Microsoft.DeploymentManager/servicetopologies","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' + string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource"},"type":"Microsoft.DeploymentManager/serviceTopologies","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -3957,7 +4523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:44 GMT + - Wed, 15 Jan 2020 00:28:07 GMT expires: - '-1' pragma: @@ -3993,15 +4559,15 @@ interactions: ParameterSetName: - -g -n --artifact-source User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2019-11-01-preview response: body: - string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/servicetopologies","apiVersion":"2018-09-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' + string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"}' headers: cache-control: - no-store, no-cache @@ -4010,7 +4576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:44 GMT + - Wed, 15 Jan 2020 00:28:09 GMT expires: - '-1' pragma: @@ -4022,10 +4588,110 @@ interactions: x-frame-options: - DENY x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' + status: + code: 201 + message: Created +- request: + body: 'b''{"location": "centralus", "properties": {"artifactSourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource"}}''' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-topology create + Connection: + - keep-alive + Content-Length: + - '225' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -l --artifact-source + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology2?api-version=2019-11-01-preview + response: + body: + string: '{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/serviceTopologies","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology2","name":"cliadm000001ServiceTopology2","location":"centralus"}' + headers: + cache-control: + - no-store, no-cache + content-length: + - '552' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:28:13 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-frame-options: + - DENY + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 201 message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager service-topology list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies?api-version=2019-11-01-preview + response: + body: + string: '[{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated"},"type":"Microsoft.DeploymentManager/serviceTopologies","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology","name":"cliadm000001ServiceTopology","location":"centralus"},{"properties":{"artifactSourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource"},"type":"Microsoft.DeploymentManager/serviceTopologies","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology2","name":"cliadm000001ServiceTopology2","location":"centralus"}]' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1048' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:28:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK - request: body: null headers: @@ -4042,12 +4708,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2019-11-01-preview response: body: string: 'null' @@ -4059,7 +4725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:45 GMT + - Wed, 15 Jan 2020 00:28:18 GMT expires: - '-1' pragma: @@ -4075,7 +4741,7 @@ interactions: x-frame-options: - DENY x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 200 message: OK @@ -4093,12 +4759,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology?api-version=2019-11-01-preview response: body: string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology'' @@ -4111,7 +4777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:46 GMT + - Wed, 15 Jan 2020 00:28:19 GMT expires: - '-1' pragma: @@ -4133,20 +4799,20 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager artifact-source delete + - deploymentmanager service-topology delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - -n -g --yes + - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology2?api-version=2019-11-01-preview response: body: string: 'null' @@ -4158,7 +4824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:47 GMT + - Wed, 15 Jan 2020 00:28:22 GMT expires: - '-1' pragma: @@ -4186,31 +4852,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - deploymentmanager artifact-source show + - deploymentmanager service-topology show Connection: - keep-alive ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology2?api-version=2019-11-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/serviceTopologies/cliadm000001ServiceTopology2'' under resource group ''cliadm000001'' was not found."}}' headers: cache-control: - no-cache content-length: - - '186' + - '190' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:48 GMT + - Wed, 15 Jan 2020 00:28:22 GMT expires: - '-1' pragma: @@ -4224,6 +4890,55 @@ interactions: status: code: 404 message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - deploymentmanager artifact-source list + Connection: + - keep-alive + ParameterSetName: + - -g + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources?api-version=2019-11-01-preview + response: + body: + string: '[{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A13Z&se=2020-01-15T10%3A13Z&sp=rl&sv=2018-11-09&sr=c&sig=0oFRisE9AgGIR9VxARyy%2BHkOyy7hKDb3rkel0y46LF0%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource","name":"cliadm000001ArtifactSource","location":"centralus"},{"properties":{"sourceType":"AzureStorage","artifactRoot":"artifactroot","authentication":{"type":"Sas","properties":{"sasUri":"https://cliadm000002.blob.core.windows.net/artifacts?st=2020-01-14T23%3A28Z&se=2020-01-15T10%3A28Z&sp=rl&sv=2018-11-09&sr=c&sig=VPdwL3c5XbDBPEQQdAvxt2IODQ2yvkoyqfQ34RMCs8Q%3D"}},"provisioningState":"Succeeded"},"type":"Microsoft.DeploymentManager/artifactSources","apiVersion":"2019-11-01-preview","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated","name":"cliadm000001ArtifactSourceUpdated","location":"centralus"}]' + headers: + cache-control: + - no-store, no-cache + content-length: + - '1349' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:28:23 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-frame-options: + - DENY + status: + code: 200 + message: OK - request: body: null headers: @@ -4240,12 +4955,12 @@ interactions: ParameterSetName: - -n -g --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2019-11-01-preview response: body: string: 'null' @@ -4257,7 +4972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:50 GMT + - Wed, 15 Jan 2020 00:28:25 GMT expires: - '-1' pragma: @@ -4291,25 +5006,25 @@ interactions: ParameterSetName: - -n -g User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-deploymentmanager/0.9.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2018-09-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource?api-version=2019-11-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated'' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSource'' under resource group ''cliadm000001'' was not found."}}' headers: cache-control: - no-cache content-length: - - '193' + - '186' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:50 GMT + - Wed, 15 Jan 2020 00:28:26 GMT expires: - '-1' pragma: @@ -4331,43 +5046,95 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - group delete + - deploymentmanager artifact-source delete Connection: - keep-alive Content-Length: - '0' ParameterSetName: - - --name --yes --no-wait + - -n -g --yes User-Agent: - - python/3.7.3 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0 - Azure-SDK-For-Python AZURECLI/2.0.62 + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 accept-language: - en-US method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliadm000001?api-version=2019-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2019-11-01-preview response: body: - string: '' + string: 'null' headers: cache-control: - - no-cache + - no-store, no-cache content-length: - - '0' + - '4' + content-type: + - application/json; charset=utf-8 date: - - Tue, 16 Apr 2019 21:44:51 GMT + - Wed, 15 Jan 2020 00:28:27 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElBRE1PWVpCUjQtQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJjZW50cmFsdXMifQ?api-version=2019-07-01 pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-frame-options: + - DENY 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: + - deploymentmanager artifact-source show + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.10 msrest_azure/0.6.2 + azure-mgmt-deploymentmanager/0.2.0 Azure-SDK-For-Python AZURECLI/2.0.80 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliadm000001/providers/Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated?api-version=2019-11-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.DeploymentManager/artifactSources/cliadm000001ArtifactSourceUpdated'' + under resource group ''cliadm000001'' was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '193' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 15 Jan 2020 00:28: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 version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/test_deploymentmanager_scenario.py b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/test_deploymentmanager_scenario.py index 5205e146520..d9965f0e243 100644 --- a/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/test_deploymentmanager_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/deploymentmanager/tests/latest/test_deploymentmanager_scenario.py @@ -18,6 +18,7 @@ StorageAccountPreparer) from msrestazure.azure_exceptions import CloudError +from azure_devtools.scenario_tests import AllowLargeResponse name_prefix = 'cliadm' resource_location = 'centralus' @@ -26,6 +27,7 @@ create_rollout_template = os.path.join(curr_dir, "createrollout.json").replace('\\', '\\\\') failure_create_rollout_template = os.path.join(curr_dir, "createrollout_failurerollout.json").replace('\\', '\\\\') +healthcheck_file_path = os.path.join(curr_dir, "healthcheck_step.json").replace('\\', '\\\\') parameters_file_name = "storage.parameters.json" invalid_parameters_file_name = "storage_invalid.parameters.json" @@ -46,6 +48,7 @@ class DeploymentManagerTests(ScenarioTest): @ResourceGroupPreparer(name_prefix=name_prefix, random_name_length=12, location=resource_location) @StorageAccountPreparer(name_prefix=name_prefix, location=resource_location) + @AllowLargeResponse() def test_deploymentmanager_scenario(self, resource_group, storage_account): subscription_id = self.get_subscription_id() @@ -72,6 +75,8 @@ def test_deploymentmanager_scenario(self, resource_group, storage_account): updated_artifact_source_name, storage_account) + self.list_artifact_sources(resource_group, artifact_source_name) + self.delete_artifact_source(resource_group, artifact_source_name) self.delete_artifact_source(resource_group, updated_artifact_source_name) @@ -85,6 +90,7 @@ def service_topology_validations( storage_account_name): topology_name = resource_group_name + "ServiceTopology" + topology2_name = resource_group_name + "ServiceTopology2" self.kwargs = { 'rg': resource_group_name, @@ -94,7 +100,7 @@ def service_topology_validations( } self.cmd('deploymentmanager service-topology create -g {rg} -n {st_name} -l \"{location}\" --artifact-source {as_id}', checks=[ - self.check('type', 'Microsoft.DeploymentManager/servicetopologies'), + self.check('type', 'Microsoft.DeploymentManager/serviceTopologies'), self.check('name', topology_name), self.check('artifactSourceId', artifact_source_id)]) @@ -123,10 +129,42 @@ def service_topology_validations( } self.cmd('deploymentmanager service-topology update -g {rg} -n {st_name} --artifact-source {as_id}', checks=[ - self.check('type', 'Microsoft.DeploymentManager/servicetopologies'), + self.check('type', 'Microsoft.DeploymentManager/serviceTopologies'), self.check('name', topology_name), self.check('artifactSourceId', updated_artifact_source_id)]) + self.kwargs = { + 'rg': resource_group_name, + 'location': location, + 'st_name': topology2_name, + 'as_id': artifact_source_id, + } + + self.cmd('deploymentmanager service-topology create -g {rg} -n {st_name} -l \"{location}\" --artifact-source {as_id}', checks=[ + self.check('type', 'Microsoft.DeploymentManager/serviceTopologies'), + self.check('name', topology2_name), + self.check('artifactSourceId', artifact_source_id)]) + + self.list_service_topologies(resource_group_name, topology_name) + + self.kwargs = { + 'rg': resource_group_name, + 'location': location, + 'st_name': topology_name, + 'as_id': artifact_source_id, + } + + self.cmd('deploymentmanager service-topology delete -g {rg} -n {st_name}') + with self.assertRaisesRegexp(CloudError, 'not found'): + self.cmd('deploymentmanager service-topology show -n {st_name} -g {rg}') + + self.kwargs = { + 'rg': resource_group_name, + 'location': location, + 'st_name': topology2_name, + 'as_id': artifact_source_id, + } + self.cmd('deploymentmanager service-topology delete -g {rg} -n {st_name}') with self.assertRaisesRegexp(CloudError, 'not found'): self.cmd('deploymentmanager service-topology show -n {st_name} -g {rg}') @@ -141,11 +179,14 @@ def services_validations( subscription_id): service_name = resource_group_name + "Service" + service2_name = resource_group_name + "Service2" + self.kwargs = { 'rg': resource_group_name, 'location': location, 'st_name': service_topology_name, 's_name': service_name, + 's2_name': service2_name, 't_l': location, 't_sub_id': subscription_id } @@ -170,6 +211,7 @@ def services_validations( 'location': location, 'st_name': service_topology_name, 's_name': service_name, + 's2_name': service2_name, 't_l': location, 't_sub_id': updated_target_subscription_id } @@ -179,10 +221,28 @@ def services_validations( self.check('name', service_name), self.check('targetSubscriptionId', updated_target_subscription_id)]) + self.cmd('deploymentmanager service create -g {rg} --service-topology-name {st_name} -n {s2_name} -l \"{location}\" --target-location \"{t_l}\" --target-subscription-id {t_sub_id}', checks=[ + self.check('type', 'Microsoft.DeploymentManager/serviceTopologies/services'), + self.check('name', service2_name), + self.check('targetLocation', location)]) + + self.list_services(resource_group_name, service_topology_name, service_name) + + self.kwargs = { + 'rg': resource_group_name, + 'st_name': service_topology_name, + 's_name': service_name, + 's2_name': service2_name, + } + self.cmd('deploymentmanager service delete -g {rg} --service-topology-name {st_name} -n {s_name}') with self.assertRaisesRegexp(CloudError, 'not found'): self.cmd('deploymentmanager service show -g {rg} --service-topology-name {st_name} -n {s_name}') + self.cmd('deploymentmanager service delete -g {rg} --service-topology-name {st_name} -n {s2_name}') + with self.assertRaisesRegexp(CloudError, 'not found'): + self.cmd('deploymentmanager service show -g {rg} --service-topology-name {st_name} -n {s2_name}') + def service_units_validations( self, resource_group_name, @@ -263,6 +323,15 @@ def service_units_validations( self.check('name', service_unit_name), self.check('deploymentMode', deployment_mode)]) + self.list_service_units(resource_group_name, service_topology_name, service_name, service_unit_name) + + self.kwargs = { + 'rg': resource_group_name, + 'st_name': service_topology_name, + 's_name': service_name, + 'su_name': service_unit_name, + } + self.cmd('deploymentmanager service-unit delete -g {rg} --service-topology-name {st_name} --service-name {s_name} -n {su_name}') with self.assertRaisesRegexp(CloudError, 'not found'): self.cmd('deploymentmanager service-unit show -g {rg} --service-topology-name {st_name} --service-name {s_name} -n {su_name}') @@ -329,10 +398,105 @@ def steps_validations( self.check('name', step_name), self.check('properties.attributes.duration', updated_duration)]) + self.healthcheck_step_validations(resource_group_name, location) + + self.kwargs = { + 'rg': resource_group_name, + 'step_name': step_name + } + + self.cmd('deploymentmanager step delete -g {rg} -n {step_name}') + with self.assertRaisesRegexp(CloudError, 'not found'): + self.cmd('deploymentmanager step show -g {rg} -n {step_name}') + + def healthcheck_step_validations( + self, + resource_group_name, + location): + + step_name = resource_group_name + "RestHealthCheckStep" + updated_healthy_state_duration = "PT30M" + + self.replace_string("__HEALTH_CHECK_STEP_NAME__", step_name, healthcheck_file_path, True) + + self.kwargs = { + 'rg': resource_group_name, + 'step_name': step_name, + 'rest_health_check_file': healthcheck_file_path, + 'healthy_state_duration': updated_healthy_state_duration + } + + json_obj = None + with open(healthcheck_file_path) as f: + json_obj = json.load(f) + + self.cmd('deploymentmanager step create -g {rg} --step {rest_health_check_file}', checks=[ + self.check('type', 'Microsoft.DeploymentManager/steps'), + self.check('name', step_name), + self.check('properties.stepType', 'HealthCheck'), + self.check('properties.attributes.waitDuration', json_obj['properties']['attributes']['waitDuration']), + self.check('properties.attributes.maxElasticDuration', json_obj['properties']['attributes']['maxElasticDuration']), + self.check('properties.attributes.healthyStateDuration', json_obj['properties']['attributes']['healthyStateDuration'])]) + + step_id = self.cmd('deploymentmanager step show -g {rg} -n {step_name}').get_output_in_json()['id'] + self.assertFalse(step_id is None) + + # Revert health check file change for playback mode. + self.replace_string(step_name, "__HEALTH_CHECK_STEP_NAME__", healthcheck_file_path, True) + + json_obj['properties']['attributes']['healthyStateDuration'] = updated_healthy_state_duration + + serialized_json = json.dumps(json_obj) + self.assertFalse(serialized_json is None) + + self.kwargs = { + 'rg': resource_group_name, + 'step_name': step_name, + 'step': serialized_json + } + + self.cmd('deploymentmanager step update -g {rg} -n {step_name} --step \'{step}\'', checks=[ + self.check('type', 'Microsoft.DeploymentManager/steps'), + self.check('name', step_name), + self.check('properties.attributes.healthyStateDuration', updated_healthy_state_duration)]) + + step2_name = resource_group_name + "RestHealthCheckStep2" + json_obj['name'] = step2_name + + serialized_json = json.dumps(json_obj) + self.assertFalse(serialized_json is None) + + self.kwargs = { + 'rg': resource_group_name, + 'step': serialized_json + } + + self.cmd('deploymentmanager step create -g {rg} --step \'{step}\'', checks=[ + self.check('type', 'Microsoft.DeploymentManager/steps'), + self.check('name', step2_name), + self.check('properties.stepType', 'HealthCheck'), + self.check('properties.attributes.healthyStateDuration', updated_healthy_state_duration)]) + + self.list_steps(resource_group_name, step_name) + + self.kwargs = { + 'rg': resource_group_name, + 'step_name': step_name + } + self.cmd('deploymentmanager step delete -g {rg} -n {step_name}') with self.assertRaisesRegexp(CloudError, 'not found'): self.cmd('deploymentmanager step show -g {rg} -n {step_name}') + self.kwargs = { + 'rg': resource_group_name, + 'step2_name': step2_name + } + + self.cmd('deploymentmanager step delete -g {rg} -n {step2_name}') + with self.assertRaisesRegexp(CloudError, 'not found'): + self.cmd('deploymentmanager step show -g {rg} -n {step2_name}') + def rollouts_validations( self, resource_group_name, @@ -557,6 +721,83 @@ def setup_artifacts_container(self, resource_group_name, storage_account_name, c self.upload_blob(storage_account_info, container_name, templateCopyArtifactSourceRelativePath, template_copy_file_name) self.upload_blob(storage_account_info, container_name, invalidParametersArtifactSourceRelativePath, invalid_parameters_file_name) + def list_steps(self, resource_group_name, step_name): + self.kwargs = { + 'rg': resource_group_name, + 'step_name': step_name + } + + steps = self.cmd('deploymentmanager step list -g {rg}', checks=[ + self.check("length(@)", 3) + ]).get_output_in_json() + + selected_step = [x for x in steps if(x['name'].lower() == step_name.lower())] + self.assertIsNotNone(selected_step, "list steps did not return {step_name}.") + + def list_service_units(self, resource_group_name, service_topology_name, service_name, service_unit_name): + self.kwargs = { + 'rg': resource_group_name, + 'st_name': service_topology_name, + 's_name': service_name, + 'su_name': service_unit_name + } + + service_units = self.cmd('deploymentmanager service-unit list -g {rg} --service-topology-name {st_name} --service-name {s_name}', checks=[ + self.check("length(@)", 2) + ]).get_output_in_json() + + selected_service_unit = [x for x in service_units if(x['name'].lower() == service_unit_name.lower())] + self.assertIsNotNone(selected_service_unit, "list service units did not return {su_name}.") + + def list_services(self, resource_group_name, service_topology_name, service_name): + self.kwargs = { + 'rg': resource_group_name, + 'st_name': service_topology_name + } + + services = self.cmd('deploymentmanager service list -g {rg} --service-topology-name {st_name}', checks=[ + self.check("length(@)", 2) + ]).get_output_in_json() + + self.kwargs = { + 's_name': service_name + } + + selected_service = [x for x in services if(x['name'].lower() == service_name.lower())] + self.assertIsNotNone(selected_service, "list services did not return {s_name}.") + + def list_service_topologies(self, resource_group_name, service_topology_name): + self.kwargs = { + 'rg': resource_group_name + } + + service_topologies = self.cmd('deploymentmanager service-topology list -g {rg}', checks=[ + self.check("length(@)", 2) + ]).get_output_in_json() + + self.kwargs = { + 'st_name': service_topology_name + } + + selected_service_topology = [x for x in service_topologies if(x['name'].lower() == service_topology_name.lower())] + self.assertIsNotNone(selected_service_topology, "list service topologies did not return {st_name}.") + + def list_artifact_sources(self, resource_group_name, artifact_source_name): + self.kwargs = { + 'rg': resource_group_name + } + + artifact_sources = self.cmd('deploymentmanager artifact-source list -g {rg}', checks=[ + self.check("length(@)", 2) + ]).get_output_in_json() + + self.kwargs = { + 'as_name': artifact_source_name + } + + selected_artifact_source = [x for x in artifact_sources if(x['name'].lower() == artifact_source_name.lower())] + self.assertIsNotNone(selected_artifact_source, "list artifact sources did not return {as_name}.") + def delete_artifact_source(self, resource_group_name, artifact_source_name): self.kwargs = { 'rg': resource_group_name, @@ -591,12 +832,13 @@ def storage_cmd(self, cmd, account_info, *args): cmd = '{} --account-name {} --account-key {}'.format(cmd, *account_info) return self.cmd(cmd) - def replace_string(self, replacement_symbol, replacement_value, filePath): + def replace_string(self, replacement_symbol, replacement_value, filePath, overridePlayback=False): is_playback = os.path.exists(self.recording_file) - if not is_playback: - with fileinput.FileInput(filePath, inplace=True) as file: - for line in file: - print(line.replace(replacement_symbol, replacement_value), end='') + if (not is_playback or overridePlayback): + file = fileinput.FileInput(filePath, inplace=True) + for line in file: + print(line.replace(replacement_symbol, replacement_value), end='') + file.close() def replace_rollout_placeholders( self, diff --git a/src/azure-cli/requirements.py2.Darwin.txt b/src/azure-cli/requirements.py2.Darwin.txt index 181c2f29378..e71e4adb9c4 100644 --- a/src/azure-cli/requirements.py2.Darwin.txt +++ b/src/azure-cli/requirements.py2.Darwin.txt @@ -37,7 +37,7 @@ azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 azure-mgmt-datamigration==0.1.0 -azure-mgmt-deploymentmanager==0.1.0 +azure-mgmt-deploymentmanager==0.2.0 azure-mgmt-devtestlabs==2.2.0 azure-mgmt-dns==2.1.0 azure-mgmt-eventgrid==2.2.0 diff --git a/src/azure-cli/requirements.py2.Linux.txt b/src/azure-cli/requirements.py2.Linux.txt index 181c2f29378..e71e4adb9c4 100644 --- a/src/azure-cli/requirements.py2.Linux.txt +++ b/src/azure-cli/requirements.py2.Linux.txt @@ -37,7 +37,7 @@ azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 azure-mgmt-datamigration==0.1.0 -azure-mgmt-deploymentmanager==0.1.0 +azure-mgmt-deploymentmanager==0.2.0 azure-mgmt-devtestlabs==2.2.0 azure-mgmt-dns==2.1.0 azure-mgmt-eventgrid==2.2.0 diff --git a/src/azure-cli/requirements.py2.windows.txt b/src/azure-cli/requirements.py2.windows.txt index 53a5695e88b..bbddf7e6e4c 100644 --- a/src/azure-cli/requirements.py2.windows.txt +++ b/src/azure-cli/requirements.py2.windows.txt @@ -36,7 +36,7 @@ azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 azure-mgmt-datamigration==0.1.0 -azure-mgmt-deploymentmanager==0.1.0 +azure-mgmt-deploymentmanager==0.2.0 azure-mgmt-devtestlabs==2.2.0 azure-mgmt-dns==2.1.0 azure-mgmt-eventgrid==2.2.0 diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index c78721971f8..a17fd05f54d 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -37,7 +37,7 @@ azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 azure-mgmt-datamigration==0.1.0 -azure-mgmt-deploymentmanager==0.1.0 +azure-mgmt-deploymentmanager==0.2.0 azure-mgmt-devtestlabs==2.2.0 azure-mgmt-dns==2.1.0 azure-mgmt-eventgrid==2.2.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index c78721971f8..a17fd05f54d 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -37,7 +37,7 @@ azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 azure-mgmt-datamigration==0.1.0 -azure-mgmt-deploymentmanager==0.1.0 +azure-mgmt-deploymentmanager==0.2.0 azure-mgmt-devtestlabs==2.2.0 azure-mgmt-dns==2.1.0 azure-mgmt-eventgrid==2.2.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index 17380c8ff41..8e7aaf9cfe3 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -36,7 +36,7 @@ azure-mgmt-datalake-analytics==0.2.1 azure-mgmt-datalake-nspkg==3.0.1 azure-mgmt-datalake-store==0.5.0 azure-mgmt-datamigration==0.1.0 -azure-mgmt-deploymentmanager==0.1.0 +azure-mgmt-deploymentmanager==0.2.0 azure-mgmt-devtestlabs==2.2.0 azure-mgmt-dns==2.1.0 azure-mgmt-eventgrid==2.2.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 30691caffc7..923cf3e56d9 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -83,7 +83,7 @@ 'azure-mgmt-datalake-analytics~=0.2.1', 'azure-mgmt-datalake-store~=0.5.0', 'azure-mgmt-datamigration~=0.1.0', - 'azure-mgmt-deploymentmanager~=0.1.0', + 'azure-mgmt-deploymentmanager~=0.2.0', 'azure-mgmt-devtestlabs~=2.2', 'azure-mgmt-dns~=2.1', 'azure-mgmt-eventgrid~=2.2',