diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/networking.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/networking.py index 9c369716a342f..e61974ab3449d 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/networking.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/networking.py @@ -7,6 +7,7 @@ from marshmallow import fields from marshmallow.decorators import post_load, pre_dump from azure.ai.ml._schema.core.schema_meta import PatchedSchemaMeta +from azure.ai.ml._schema.core.fields import StringTransformedEnum from azure.ai.ml._schema.core.fields import NestedField from azure.ai.ml.entities._workspace.networking import ( ManagedNetwork, @@ -15,6 +16,8 @@ ServiceTagDestination, PrivateEndpointDestination, ) +from azure.ai.ml.constants._workspace import IsolationMode, OutboundRuleCategory, OutboundRuleType +from azure.ai.ml._utils.utils import camel_to_snake, _snake_to_camel from azure.ai.ml._utils._experimental import experimental @@ -31,18 +34,28 @@ class DestinationSchema(metaclass=PatchedSchemaMeta): @experimental class OutboundRuleSchema(metaclass=PatchedSchemaMeta): - type = fields.Str(required=False) + type = StringTransformedEnum( + allowed_values=[OutboundRuleType.FQDN, OutboundRuleType.PRIVATE_ENDPOINT, OutboundRuleType.SERVICE_TAG], + casing_transform=camel_to_snake, + metadata={"description": "outbound rule type."}, + ) destination = fields.Raw(required=True) - category = fields.Str(required=False) + category = StringTransformedEnum( + allowed_values=[ + OutboundRuleCategory.REQUIRED, + OutboundRuleCategory.RECOMMENDED, + OutboundRuleCategory.USER_DEFINED, + ], + casing_transform=camel_to_snake, + metadata={"description": "outbound rule category."}, + ) @pre_dump def predump(self, data, **kwargs): if data and isinstance(data, FqdnDestination): data.destination = self.fqdn_dest2dict(data.destination) if data and isinstance(data, PrivateEndpointDestination): - data.destination = self.pe_dest2dict( - data.service_resource_id, data.subresource_target, data.spark_enabled - ) + data.destination = self.pe_dest2dict(data.service_resource_id, data.subresource_target, data.spark_enabled) if data and isinstance(data, ServiceTagDestination): data.destination = self.service_tag_dest2dict(data.service_tag, data.protocol, data.port_ranges) return data @@ -50,16 +63,22 @@ def predump(self, data, **kwargs): @post_load def createdestobject(self, data, **kwargs): dest = data.get("destination", False) + category = data.get("category", OutboundRuleCategory.USER_DEFINED) if dest: if isinstance(dest, str): - return FqdnDestination(dest) + return FqdnDestination(dest, _snake_to_camel(category)) else: if dest.get("subresource_target", False): return PrivateEndpointDestination( - dest["service_resource_id"], dest["subresource_target"], dest["spark_enabled"] + dest["service_resource_id"], + dest["subresource_target"], + dest["spark_enabled"], + _snake_to_camel(category), ) if dest.get("service_tag", False): - return ServiceTagDestination(dest["service_tag"], dest["protocol"], dest["port_ranges"]) + return ServiceTagDestination( + dest["service_tag"], dest["protocol"], dest["port_ranges"], _snake_to_camel(category) + ) return OutboundRule(data) def fqdn_dest2dict(self, fqdndest): @@ -83,7 +102,15 @@ def service_tag_dest2dict(self, service_tag, protocol, port_ranges): @experimental class ManagedNetworkSchema(metaclass=PatchedSchemaMeta): - isolation_mode = fields.Str(required=True) + isolation_mode = StringTransformedEnum( + allowed_values=[ + IsolationMode.DISABLED, + IsolationMode.ALLOW_INTERNET_OUTBOUND, + IsolationMode.ALLOW_ONLY_APPROVED_OUTBOUND, + ], + casing_transform=camel_to_snake, + metadata={"description": "isolation mode for the workspace managed network."}, + ) outbound_rules = fields.Dict( keys=fields.Str(required=True), values=NestedField(OutboundRuleSchema, allow_none=False), allow_none=True ) @@ -92,6 +119,6 @@ class ManagedNetworkSchema(metaclass=PatchedSchemaMeta): @post_load def make(self, data, **kwargs): if data.get("outbound_rules", False): - return ManagedNetwork(data["isolation_mode"], data["outbound_rules"]) + return ManagedNetwork(_snake_to_camel(data["isolation_mode"]), data["outbound_rules"]) else: - return ManagedNetwork(data["isolation_mode"]) + return ManagedNetwork(_snake_to_camel(data["isolation_mode"])) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_workspace/networking.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_workspace/networking.py index 3728ea52e6421..f0750ffe9b57b 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_workspace/networking.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_workspace/networking.py @@ -12,9 +12,7 @@ ServiceTagOutboundRule as RestServiceTagOutboundRule, ServiceTagOutboundRuleDestination as RestServiceTagOutboundRuleDestination, ) -from azure.ai.ml.constants._workspace import ( - IsolationMode, OutboundRuleCategory, OutboundRuleType -) +from azure.ai.ml.constants._workspace import IsolationMode, OutboundRuleCategory, OutboundRuleType from azure.ai.ml._utils._experimental import experimental @@ -53,9 +51,9 @@ def _from_rest_object(cls, rest_obj: Any) -> "OutboundRule": @experimental class FqdnDestination(OutboundRule): - def __init__(self, destination: str) -> None: + def __init__(self, destination: str, category: str = OutboundRuleCategory.USER_DEFINED) -> None: self.destination = destination - OutboundRule.__init__(self, type=OutboundRuleType.FQDN) + OutboundRule.__init__(self, type=OutboundRuleType.FQDN, category=category) def _to_rest_object(self) -> RestFqdnOutboundRule: return RestFqdnOutboundRule(type=self.type, category=self.category, destination=self.destination) @@ -66,11 +64,17 @@ def _to_dict(self) -> Dict: @experimental class PrivateEndpointDestination(OutboundRule): - def __init__(self, service_resource_id: str, subresource_target: str, spark_enabled: bool = False) -> None: + def __init__( + self, + service_resource_id: str, + subresource_target: str, + spark_enabled: bool = False, + category: str = OutboundRuleCategory.USER_DEFINED, + ) -> None: self.service_resource_id = service_resource_id self.subresource_target = subresource_target self.spark_enabled = spark_enabled - OutboundRule.__init__(self, OutboundRuleType.PRIVATE_ENDPOINT) + OutboundRule.__init__(self, OutboundRuleType.PRIVATE_ENDPOINT, category=category) def _to_rest_object(self) -> RestPrivateEndpointOutboundRule: return RestPrivateEndpointOutboundRule( @@ -97,11 +101,13 @@ def _to_dict(self) -> Dict: @experimental class ServiceTagDestination(OutboundRule): - def __init__(self, service_tag: str, protocol: str, port_ranges: str) -> None: + def __init__( + self, service_tag: str, protocol: str, port_ranges: str, category: str = OutboundRuleCategory.USER_DEFINED + ) -> None: self.service_tag = service_tag self.protocol = protocol self.port_ranges = port_ranges - OutboundRule.__init__(self, OutboundRuleType.SERVICE_TAG) + OutboundRule.__init__(self, OutboundRuleType.SERVICE_TAG, category=category) def _to_rest_object(self) -> RestServiceTagOutboundRule: return RestServiceTagOutboundRule( diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_workspace_outbound_rule_operations.py b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_workspace_outbound_rule_operations.py index 0e99c9d5940a1..b549d4a91eb23 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_workspace_outbound_rule_operations.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_workspace_outbound_rule_operations.py @@ -23,6 +23,8 @@ from azure.core.credentials import TokenCredential from azure.core.polling import LROPoller +from azure.ai.ml._utils.utils import _snake_to_camel + ops_logger = OpsLogger(__name__) module_logger = ops_logger.module_logger @@ -87,7 +89,8 @@ def set(self, resource_group: str, ws_name: str, outbound_rule_name: str, **kwar networkDto.outbound_rules = {} - type = kwargs.get("type", None) # pylint: disable=redefined-builtin + type = _snake_to_camel(kwargs.get("type", None)) # pylint: disable=redefined-builtin + type = OutboundRuleType.FQDN if type in ["fqdn", "Fqdn"] else type destination = kwargs.get("destination", None) service_tag = kwargs.get("service_tag", None) protocol = kwargs.get("protocol", None) diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_uai_workspace_create_update_and_delete.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_uai_workspace_create_update_and_delete.json index f42f6a4eb5127..525e94616086e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_uai_workspace_create_update_and_delete.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_uai_workspace_create_update_and_delete.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,27 +15,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:17 GMT", + "Date": "Tue, 14 Feb 2023 01:57: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-ms-correlation-request-id": "efbde786-7303-4159-a471-ac315a7eca73", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTUS2:20230131T063517Z:efbde786-7303-4159-a471-ac315a7eca73" + "x-ms-correlation-request-id": "7c111f29-e622-4a87-b3da-8e25af4b16cf", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "WESTUS:20230214T015739Z:7c111f29-e622-4a87-b3da-8e25af4b16cf" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe", "name": "uai-mhe", "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus2euap", + "location": "eastus", "tags": {}, "properties": { "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" } } }, @@ -46,7 +46,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -54,58 +54,58 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:17 GMT", + "Date": "Tue, 14 Feb 2023 01:57:39 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-correlation-request-id": "e672a9b2-bf6e-4107-ad1b-5690223e5d83", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTUS2:20230131T063517Z:e672a9b2-bf6e-4107-ad1b-5690223e5d83" + "x-ms-correlation-request-id": "702f5cfc-1c6b-4627-91d9-dff0bcb4fd74", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "WESTUS:20230214T015739Z:702f5cfc-1c6b-4627-91d9-dff0bcb4fd74" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2", "name": "uai-mhe2", "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus2euap", + "location": "eastus", "tags": {}, "properties": { "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "246", + "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:19 GMT", + "Date": "Tue, 14 Feb 2023 01:57:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "009fd9a8-31cb-47cd-b233-c3045273a36d", + "x-ms-correlation-request-id": "676fa387-e6e1-42e6-b68c-a32b01d48e75", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTUS2:20230131T063519Z:009fd9a8-31cb-47cd-b233-c3045273a36d" + "x-ms-routing-request-id": "WESTUS:20230214T015741Z:676fa387-e6e1-42e6-b68c-a32b01d48e75" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } }, @@ -116,7 +116,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -125,15 +125,15 @@ "Content-Encoding": "gzip", "Content-Length": "272", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:21 GMT", + "Date": "Tue, 14 Feb 2023 01:57:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e8db58b-88ef-4d1a-a596-e00ff006e8eb", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTUS2:20230131T063521Z:5e8db58b-88ef-4d1a-a596-e00ff006e8eb" + "x-ms-correlation-request-id": "7a45fe6c-a46a-496c-9890-f13d3cc2b80e", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "WESTUS:20230214T015742Z:7a45fe6c-a46a-496c-9890-f13d3cc2b80e" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus", @@ -152,7 +152,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,15 +161,15 @@ "Content-Encoding": "gzip", "Content-Length": "322", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:24 GMT", + "Date": "Tue, 14 Feb 2023 01:57:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad0e9367-8b6e-4558-94da-5418ebfeb722", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTUS2:20230131T063524Z:ad0e9367-8b6e-4558-94da-5418ebfeb722" + "x-ms-correlation-request-id": "881a2d93-79bd-47ec-8089-45c83282569b", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "WESTUS:20230214T015743Z:881a2d93-79bd-47ec-8089-45c83282569b" }, "ResponseBody": { "value": [ @@ -183,15 +183,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650?api-version=2020-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "19727", + "Content-Length": "20071", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -583,6 +583,15 @@ "metadata": { "description": "ARM identifier of primary user assigned managed identity, in case multiple ones are specified. Also the default managed identity for clusterless compute." } + }, + "managedNetwork": { + "type": "object", + "defaultValue": { + "isolationMode": "Disabled" + }, + "metadata": { + "description": "Managed network settings to be used for the workspace. If not specified, isolation mode Disabled is the default" + } } }, "variables": { @@ -741,7 +750,7 @@ { "condition": "[variables(\u0027enablePE\u0027)]", "type": "Microsoft.MachineLearningServices/workspaces", - "apiVersion": "2022-01-01-preview", + "apiVersion": "2022-12-01-preview", "tags": "[parameters(\u0027tagValues\u0027)]", "name": "[parameters(\u0027workspaceName\u0027)]", "location": "[parameters(\u0027location\u0027)]", @@ -774,7 +783,8 @@ "storageAccountArmId": "[parameters(\u0027encryption_storage_resourceid\u0027)]", "SearchAccountArmId": "[parameters(\u0027encryption_search_resourceid\u0027)]" }, - "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]" + "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]", + "managedNetwork": "[parameters(\u0027managedNetwork\u0027)]" } }, { @@ -818,27 +828,27 @@ "value": "eastus2euap" }, "workspaceName": { - "value": "e2etest_test_61875381419" + "value": "e2etest_test_103236817400" }, "resourceGroupName": { "value": "00000" }, "description": { - "value": "e2etest_test_61875381419 description" + "value": "e2etest_test_103236817400 description" }, "friendlyName": { - "value": "e2etest_test_61875381419 display name" + "value": "e2etest_test_103236817400 display name" }, "tagValues": { "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "keyVaultOption": { "value": "new" }, "keyVaultName": { - "value": "e2etesttkeyvault7299b64a" + "value": "e2etesttkeyvault9562d025" }, "keyVaultResourceGroupName": { "value": "00000" @@ -847,7 +857,7 @@ "value": "new" }, "storageAccountName": { - "value": "e2etesttstoragea20bc2d14" + "value": "e2etesttstoragea505f52c3" }, "storageAccountResourceGroupName": { "value": "00000" @@ -856,7 +866,7 @@ "value": "new" }, "applicationInsightsName": { - "value": "e2etesttinsightsaf9d813e" + "value": "e2etesttinsights1203ec5a" }, "applicationInsightsResourceGroupName": { "value": "00000" @@ -938,6 +948,11 @@ }, "primaryUserAssignedIdentity": { "value": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe" + }, + "managedNetwork": { + "value": { + "isolationMode": "Disabled" + } } }, "mode": "incremental" @@ -945,37 +960,37 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "Cache-Control": "no-cache", - "Content-Length": "8313", + "Content-Length": "8393", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:29 GMT", + "Date": "Tue, 14 Feb 2023 01:57:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6abf9819-48f1-4598-bffa-e33f7641efec", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTUS2:20230131T063529Z:6abf9819-48f1-4598-bffa-e33f7641efec" + "x-ms-correlation-request-id": "7b95e2d3-4ade-463c-bdc0-24229671b50e", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-routing-request-id": "WESTUS:20230214T015748Z:7b95e2d3-4ade-463c-bdc0-24229671b50e" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876", - "name": "e2etest_test_61875381419-3230876", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650", + "name": "e2etest_test_103236817400-7321650", "type": "Microsoft.Resources/deployments", "properties": { - "templateHash": "12037445159745527008", + "templateHash": "4984303229931942319", "parameters": { "workspaceName": { "type": "String", - "value": "e2etest_test_61875381419" + "value": "e2etest_test_103236817400" }, "description": { "type": "String", - "value": "e2etest_test_61875381419 description" + "value": "e2etest_test_103236817400 description" }, "friendlyName": { "type": "String", - "value": "e2etest_test_61875381419 display name" + "value": "e2etest_test_103236817400 display name" }, "location": { "type": "String", @@ -991,7 +1006,7 @@ }, "storageAccountName": { "type": "String", - "value": "e2etesttstoragea20bc2d14" + "value": "e2etesttstoragea505f52c3" }, "storageAccountType": { "type": "String", @@ -1015,7 +1030,7 @@ }, "keyVaultName": { "type": "String", - "value": "e2etesttkeyvault7299b64a" + "value": "e2etesttkeyvault9562d025" }, "keyVaultBehindVNet": { "type": "String", @@ -1035,7 +1050,7 @@ }, "applicationInsightsName": { "type": "String", - "value": "e2etesttinsightsaf9d813e" + "value": "e2etesttinsights1203ec5a" }, "applicationInsightsResourceGroupName": { "type": "String", @@ -1126,7 +1141,7 @@ "tagValues": { "type": "Object", "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "privateEndpointName": { @@ -1178,13 +1193,19 @@ "primaryUserAssignedIdentity": { "type": "String", "value": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "Disabled" + } } }, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2023-01-31T06:35:29.3138902Z", - "duration": "PT0.0004691S", - "correlationId": "6abf9819-48f1-4598-bffa-e33f7641efec", + "timestamp": "2023-02-14T01:57:48.3686221Z", + "duration": "PT0.0001374S", + "correlationId": "7b95e2d3-4ade-463c-bdc0-24229671b50e", "providers": [ { "namespace": "Microsoft.Storage", @@ -1252,9 +1273,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "resourceName": "e2etesttstoragea505f52c3" }, { "dependsOn": [ @@ -1264,9 +1285,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "resourceName": "e2etesttkeyvault9562d025" }, { "dependsOn": [ @@ -1283,19 +1304,19 @@ { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "resourceName": "e2etesttstoragea505f52c3" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "resourceName": "e2etesttkeyvault9562d025" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "resourceName": "e2etesttinsights1203ec5a" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", @@ -1303,16 +1324,16 @@ "resourceName": "name" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" }, { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", @@ -1329,43 +1350,43 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "20", + "Content-Length": "21", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:30 GMT", + "Date": "Tue, 14 Feb 2023 01:57:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c59e751-187f-48a1-bb8f-4433662579ad", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTUS2:20230131T063530Z:5c59e751-187f-48a1-bb8f-4433662579ad" + "x-ms-correlation-request-id": "22781588-8329-45c6-805b-360c426a1b28", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "WESTUS:20230214T015749Z:22781588-8329-45c6-805b-360c426a1b28" }, "ResponseBody": { - "status": "Running" + "status": "Accepted" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1374,28 +1395,28 @@ "Content-Encoding": "gzip", "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:35 GMT", + "Date": "Tue, 14 Feb 2023 01:57:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af2e911e-1bf8-4cd5-b274-09afb9294545", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTUS2:20230131T063535Z:af2e911e-1bf8-4cd5-b274-09afb9294545" + "x-ms-correlation-request-id": "335d921e-5288-4b1f-a267-48942ea0e45f", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "WESTUS:20230214T015754Z:335d921e-5288-4b1f-a267-48942ea0e45f" }, "ResponseBody": { "value": [] } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1404,96 +1425,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:35 GMT", + "Date": "Tue, 14 Feb 2023 01:57:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d6d3b2b-ac78-4797-ba54-84675d410359", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-routing-request-id": "WESTUS2:20230131T063535Z:8d6d3b2b-ac78-4797-ba54-84675d410359" + "x-ms-correlation-request-id": "77acb25c-6ee6-4e32-a35a-ed5e7738f803", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "WESTUS:20230214T015754Z:77acb25c-6ee6-4e32-a35a-ed5e7738f803" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2067", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:40 GMT", + "Date": "Tue, 14 Feb 2023 01:57:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "539f145e-279a-4ce8-8b87-0abcb1a7cc54", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-routing-request-id": "WESTUS2:20230131T063540Z:539f145e-279a-4ce8-8b87-0abcb1a7cc54" + "x-ms-correlation-request-id": "4dbc0dc8-b823-422e-b466-534523e3d4ba", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "WESTUS:20230214T015759Z:4dbc0dc8-b823-422e-b466-534523e3d4ba" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:57:57.3689277Z", + "duration": "PT8.1214239S", + "trackingId": "db570dd9-3534-4c0c-a4c4-54e042215cb4", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:35.9594665Z", - "duration": "PT5.8616726S", - "trackingId": "3dda6b0c-39b1-40f9-a79b-ba6763cf1e7e", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:35.8562982Z", - "duration": "PT5.7585043S", - "trackingId": "d4059ea4-c26d-460c-b8ae-a07ca0c30907", - "statusCode": "OK", + "timestamp": "2023-02-14T01:57:56.5002129Z", + "duration": "PT7.2527091S", + "trackingId": "9b10630d-10ca-416d-8068-b80d40827756", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } } @@ -1501,13 +1522,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1516,131 +1537,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:40 GMT", + "Date": "Tue, 14 Feb 2023 01:57:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffe71934-af98-40c7-a636-18c939837a53", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-routing-request-id": "WESTUS2:20230131T063540Z:ffe71934-af98-40c7-a636-18c939837a53" + "x-ms-correlation-request-id": "3ec072c3-a0b2-4ec3-9fbd-761414e05648", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "WESTUS:20230214T015759Z:3ec072c3-a0b2-4ec3-9fbd-761414e05648" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7ddd3d3e-ff21-4fbd-a7cb-fb921ccb16ec?api-version=2022-10-01-preview\u0026type=async", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5627af225eea5ce6da48773791310c21-97ad5975c2da0d5c-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f31836f-fc57-44c9-9b9b-1fa752e35fb1", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063541Z:9f31836f-fc57-44c9-9b9b-1fa752e35fb1", - "x-request-time": "0.024" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2067", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:45 GMT", + "Date": "Tue, 14 Feb 2023 01:58:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94cba22e-dea1-4065-bfc6-247d3d85df81", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-routing-request-id": "WESTUS2:20230131T063545Z:94cba22e-dea1-4065-bfc6-247d3d85df81" + "x-ms-correlation-request-id": "f7c0689d-9db2-4069-9954-5441586ea1d4", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "WESTUS:20230214T015804Z:f7c0689d-9db2-4069-9954-5441586ea1d4" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:57:57.3689277Z", + "duration": "PT8.1214239S", + "trackingId": "db570dd9-3534-4c0c-a4c4-54e042215cb4", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:35.9594665Z", - "duration": "PT5.8616726S", - "trackingId": "3dda6b0c-39b1-40f9-a79b-ba6763cf1e7e", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:35.8562982Z", - "duration": "PT5.7585043S", - "trackingId": "d4059ea4-c26d-460c-b8ae-a07ca0c30907", - "statusCode": "OK", + "timestamp": "2023-02-14T01:57:56.5002129Z", + "duration": "PT7.2527091S", + "trackingId": "9b10630d-10ca-416d-8068-b80d40827756", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } } @@ -1648,13 +1634,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1663,28 +1649,28 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:45 GMT", + "Date": "Tue, 14 Feb 2023 01:58:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6890a6c3-0edf-4e9e-ac42-1aebf1f7c502", + "x-ms-correlation-request-id": "b81d1444-6347-478e-add6-29e17934c4db", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTUS2:20230131T063545Z:6890a6c3-0edf-4e9e-ac42-1aebf1f7c502" + "x-ms-routing-request-id": "WESTUS:20230214T015804Z:b81d1444-6347-478e-add6-29e17934c4db" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1693,96 +1679,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:50 GMT", + "Date": "Tue, 14 Feb 2023 01:58:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9152134e-7521-40d3-a84c-5da04730cccb", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-routing-request-id": "WESTUS2:20230131T063551Z:9152134e-7521-40d3-a84c-5da04730cccb" + "x-ms-correlation-request-id": "a8b08071-7ae8-4492-a1a7-562325e290fd", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "WESTUS:20230214T015810Z:a8b08071-7ae8-4492-a1a7-562325e290fd" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2067", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:50 GMT", + "Date": "Tue, 14 Feb 2023 01:58:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3213936-5e1f-45e1-aa12-1bcbe0bd672f", + "x-ms-correlation-request-id": "5ae06584-96eb-4da7-9167-be61feffafd3", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTUS2:20230131T063551Z:f3213936-5e1f-45e1-aa12-1bcbe0bd672f" + "x-ms-routing-request-id": "WESTUS:20230214T015810Z:5ae06584-96eb-4da7-9167-be61feffafd3" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:57:57.3689277Z", + "duration": "PT8.1214239S", + "trackingId": "db570dd9-3534-4c0c-a4c4-54e042215cb4", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:35.9594665Z", - "duration": "PT5.8616726S", - "trackingId": "3dda6b0c-39b1-40f9-a79b-ba6763cf1e7e", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:35.8562982Z", - "duration": "PT5.7585043S", - "trackingId": "d4059ea4-c26d-460c-b8ae-a07ca0c30907", - "statusCode": "OK", + "timestamp": "2023-02-14T01:57:56.5002129Z", + "duration": "PT7.2527091S", + "trackingId": "9b10630d-10ca-416d-8068-b80d40827756", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } } @@ -1790,13 +1776,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1805,96 +1791,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:56 GMT", + "Date": "Tue, 14 Feb 2023 01:58:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0955304-0321-4416-ab87-2eeeee1d9888", + "x-ms-correlation-request-id": "bd701539-8d48-407b-9df1-aea76e0d4339", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTUS2:20230131T063556Z:a0955304-0321-4416-ab87-2eeeee1d9888" + "x-ms-routing-request-id": "WESTUS:20230214T015815Z:bd701539-8d48-407b-9df1-aea76e0d4339" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2070", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:56 GMT", + "Date": "Tue, 14 Feb 2023 01:58:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e60acc7-397c-4058-8d17-c56164de275f", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-routing-request-id": "WESTUS2:20230131T063556Z:8e60acc7-397c-4058-8d17-c56164de275f" + "x-ms-correlation-request-id": "88713e0c-9c56-4d6e-a22a-310ac61ed58a", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "WESTUS:20230214T015815Z:88713e0c-9c56-4d6e-a22a-310ac61ed58a" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "timestamp": "2023-02-14T01:58:12.7584585Z", + "duration": "PT23.5109547S", + "trackingId": "979bc1e7-fae7-4edb-84f9-d809790dc427", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:55.9836527Z", - "duration": "PT25.8858588S", - "trackingId": "a84c6e50-81f6-42f1-809f-423e82dd69aa", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:51.5691245Z", - "duration": "PT21.4713306S", - "trackingId": "95c37555-0b6d-470e-a5ad-d42dfd1b6159", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:57:56.5002129Z", + "duration": "PT7.2527091S", + "trackingId": "9b10630d-10ca-416d-8068-b80d40827756", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } } @@ -1902,13 +1888,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1917,113 +1903,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:01 GMT", + "Date": "Tue, 14 Feb 2023 01:58:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eb39782-0bf4-4ad0-aa21-aa11e0ce232f", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-routing-request-id": "WESTUS2:20230131T063601Z:8eb39782-0bf4-4ad0-aa21-aa11e0ce232f" + "x-ms-correlation-request-id": "9fa33588-abbe-4b3c-bf77-b89fa7299bae", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "WESTUS:20230214T015820Z:9fa33588-abbe-4b3c-bf77-b89fa7299bae" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2782", + "Content-Length": "2788", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:01 GMT", + "Date": "Tue, 14 Feb 2023 01:58:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "100db6bc-ee15-4a5c-ae86-553d05d41ed7", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTUS2:20230131T063601Z:100db6bc-ee15-4a5c-ae86-553d05d41ed7" + "x-ms-correlation-request-id": "2f6579e1-50af-446f-bd37-a28f2a54333e", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "WESTUS:20230214T015820Z:2f6579e1-50af-446f-bd37-a28f2a54333e" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/8DDB1004A4386BD3", - "operationId": "8DDB1004A4386BD3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/4D6B8D4FBE183EB3", + "operationId": "4D6B8D4FBE183EB3", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:58.569488Z", - "duration": "PT2.5132185S", - "trackingId": "89849062-5753-4b90-aaca-4358079aaa0c", + "timestamp": "2023-02-14T01:58:19.9622507Z", + "duration": "PT2.0256958S", + "trackingId": "3e0833c5-ea85-4581-b1b7-546262da6650", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "timestamp": "2023-02-14T01:58:12.7584585Z", + "duration": "PT23.5109547S", + "trackingId": "979bc1e7-fae7-4edb-84f9-d809790dc427", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:55.9836527Z", - "duration": "PT25.8858588S", - "trackingId": "a84c6e50-81f6-42f1-809f-423e82dd69aa", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:51.5691245Z", - "duration": "PT21.4713306S", - "trackingId": "95c37555-0b6d-470e-a5ad-d42dfd1b6159", + "timestamp": "2023-02-14T01:58:17.8883547Z", + "duration": "PT28.6408509S", + "trackingId": "daa68f42-31e9-4f6d-839d-cc9478791dc7", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } } @@ -2031,13 +2017,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2046,113 +2032,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:06 GMT", + "Date": "Tue, 14 Feb 2023 01:58:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdd4536f-09b7-499e-9940-9f46473bde5a", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTUS2:20230131T063606Z:bdd4536f-09b7-499e-9940-9f46473bde5a" + "x-ms-correlation-request-id": "c9ddf021-b882-4506-a31e-02aa5cf1376e", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "WESTUS:20230214T015825Z:c9ddf021-b882-4506-a31e-02aa5cf1376e" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2782", + "Content-Length": "2788", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:06 GMT", + "Date": "Tue, 14 Feb 2023 01:58:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "625fb794-2141-430c-8b32-c726505ab154", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTUS2:20230131T063607Z:625fb794-2141-430c-8b32-c726505ab154" + "x-ms-correlation-request-id": "10aa367a-abef-426d-8e4f-c995213798f0", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "WESTUS:20230214T015826Z:10aa367a-abef-426d-8e4f-c995213798f0" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/8DDB1004A4386BD3", - "operationId": "8DDB1004A4386BD3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/4D6B8D4FBE183EB3", + "operationId": "4D6B8D4FBE183EB3", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:58.569488Z", - "duration": "PT2.5132185S", - "trackingId": "89849062-5753-4b90-aaca-4358079aaa0c", + "timestamp": "2023-02-14T01:58:19.9622507Z", + "duration": "PT2.0256958S", + "trackingId": "3e0833c5-ea85-4581-b1b7-546262da6650", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "timestamp": "2023-02-14T01:58:12.7584585Z", + "duration": "PT23.5109547S", + "trackingId": "979bc1e7-fae7-4edb-84f9-d809790dc427", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:55.9836527Z", - "duration": "PT25.8858588S", - "trackingId": "a84c6e50-81f6-42f1-809f-423e82dd69aa", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:51.5691245Z", - "duration": "PT21.4713306S", - "trackingId": "95c37555-0b6d-470e-a5ad-d42dfd1b6159", + "timestamp": "2023-02-14T01:58:17.8883547Z", + "duration": "PT28.6408509S", + "trackingId": "daa68f42-31e9-4f6d-839d-cc9478791dc7", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } } @@ -2160,165 +2146,128 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7ddd3d3e-ff21-4fbd-a7cb-fb921ccb16ec?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c5313cd30e1cc9bfe7577b8a58001ff1-21b4f71d47cf89ad-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b687700a-7b9a-46e2-8e67-32c9a47a72d4", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063611Z:b687700a-7b9a-46e2-8e67-32c9a47a72d4", - "x-request-time": "0.023" - }, - "ResponseBody": { - "status": "Succeeded", - "percentComplete": 100.0 - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Connection": "close", - "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:11 GMT", + "Date": "Tue, 14 Feb 2023 01:58:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24e3e5f6-bbd4-4786-a75a-667d16ee1541", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTUS2:20230131T063611Z:24e3e5f6-bbd4-4786-a75a-667d16ee1541" + "x-ms-correlation-request-id": "ad945f5e-d6ee-4aa6-8a5a-e9afa2a93071", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "WESTUS:20230214T015830Z:ad945f5e-d6ee-4aa6-8a5a-e9afa2a93071" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2782", + "Content-Length": "2788", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:12 GMT", + "Date": "Tue, 14 Feb 2023 01:58:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "623f1cf4-d416-4ec3-9c27-5f379d2e08ca", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-routing-request-id": "WESTUS2:20230131T063612Z:623f1cf4-d416-4ec3-9c27-5f379d2e08ca" + "x-ms-correlation-request-id": "8b7a22dc-5e07-4858-bfef-a6e5023b1e2c", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "WESTUS:20230214T015831Z:8b7a22dc-5e07-4858-bfef-a6e5023b1e2c" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/8DDB1004A4386BD3", - "operationId": "8DDB1004A4386BD3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/4D6B8D4FBE183EB3", + "operationId": "4D6B8D4FBE183EB3", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:35:58.569488Z", - "duration": "PT2.5132185S", - "trackingId": "89849062-5753-4b90-aaca-4358079aaa0c", + "timestamp": "2023-02-14T01:58:19.9622507Z", + "duration": "PT2.0256958S", + "trackingId": "3e0833c5-ea85-4581-b1b7-546262da6650", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "timestamp": "2023-02-14T01:58:12.7584585Z", + "duration": "PT23.5109547S", + "trackingId": "979bc1e7-fae7-4edb-84f9-d809790dc427", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:55.9836527Z", - "duration": "PT25.8858588S", - "trackingId": "a84c6e50-81f6-42f1-809f-423e82dd69aa", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:51.5691245Z", - "duration": "PT21.4713306S", - "trackingId": "95c37555-0b6d-470e-a5ad-d42dfd1b6159", + "timestamp": "2023-02-14T01:58:17.8883547Z", + "duration": "PT28.6408509S", + "trackingId": "daa68f42-31e9-4f6d-839d-cc9478791dc7", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } } @@ -2326,13 +2275,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operationStatuses/08585264599578810839?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operationStatuses/08585252670204051991?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2341,64 +2290,64 @@ "Content-Encoding": "gzip", "Content-Length": "22", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:16 GMT", + "Date": "Tue, 14 Feb 2023 01:58:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "691066f4-22d2-445c-bdd6-44dd9f7a63b1", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-routing-request-id": "WESTUS2:20230131T063617Z:691066f4-22d2-445c-bdd6-44dd9f7a63b1" + "x-ms-correlation-request-id": "c0323bfa-0ae2-4e71-9a59-9dfd5e2ce6e9", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "WESTUS:20230214T015836Z:c0323bfa-0ae2-4e71-9a59-9dfd5e2ce6e9" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "8926", + "Content-Length": "9007", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:17 GMT", + "Date": "Tue, 14 Feb 2023 01:58:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8875913-6f9c-4473-a50f-497b813e5bd7", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-routing-request-id": "WESTUS2:20230131T063617Z:e8875913-6f9c-4473-a50f-497b813e5bd7" + "x-ms-correlation-request-id": "dab299d9-0530-4dbd-8abe-83623ae9da73", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "WESTUS:20230214T015836Z:dab299d9-0530-4dbd-8abe-83623ae9da73" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876", - "name": "e2etest_test_61875381419-3230876", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650", + "name": "e2etest_test_103236817400-7321650", "type": "Microsoft.Resources/deployments", "properties": { - "templateHash": "12037445159745527008", + "templateHash": "4984303229931942319", "parameters": { "workspaceName": { "type": "String", - "value": "e2etest_test_61875381419" + "value": "e2etest_test_103236817400" }, "description": { "type": "String", - "value": "e2etest_test_61875381419 description" + "value": "e2etest_test_103236817400 description" }, "friendlyName": { "type": "String", - "value": "e2etest_test_61875381419 display name" + "value": "e2etest_test_103236817400 display name" }, "location": { "type": "String", @@ -2414,7 +2363,7 @@ }, "storageAccountName": { "type": "String", - "value": "e2etesttstoragea20bc2d14" + "value": "e2etesttstoragea505f52c3" }, "storageAccountType": { "type": "String", @@ -2438,7 +2387,7 @@ }, "keyVaultName": { "type": "String", - "value": "e2etesttkeyvault7299b64a" + "value": "e2etesttkeyvault9562d025" }, "keyVaultBehindVNet": { "type": "String", @@ -2458,7 +2407,7 @@ }, "applicationInsightsName": { "type": "String", - "value": "e2etesttinsightsaf9d813e" + "value": "e2etesttinsights1203ec5a" }, "applicationInsightsResourceGroupName": { "type": "String", @@ -2549,7 +2498,7 @@ "tagValues": { "type": "Object", "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "privateEndpointName": { @@ -2601,13 +2550,19 @@ "primaryUserAssignedIdentity": { "type": "String", "value": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "Disabled" + } } }, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:36:15.2843393Z", - "duration": "PT45.9709182S", - "correlationId": "6abf9819-48f1-4598-bffa-e33f7641efec", + "timestamp": "2023-02-14T01:58:35.7714679Z", + "duration": "PT47.4029832S", + "correlationId": "7b95e2d3-4ade-463c-bdc0-24229671b50e", "providers": [ { "namespace": "Microsoft.Storage", @@ -2675,9 +2630,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "resourceName": "e2etesttstoragea505f52c3" }, { "dependsOn": [ @@ -2687,9 +2642,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "resourceName": "e2etesttkeyvault9562d025" }, { "dependsOn": [ @@ -2706,19 +2661,19 @@ { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "resourceName": "e2etesttstoragea505f52c3" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "resourceName": "e2etesttkeyvault9562d025" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "resourceName": "e2etesttinsights1203ec5a" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", @@ -2726,16 +2681,16 @@ "resourceName": "name" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" }, { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", @@ -2750,126 +2705,126 @@ ], "outputResources": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3" } ] } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "3241", + "Content-Length": "3247", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:17 GMT", + "Date": "Tue, 14 Feb 2023 01:58:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11830f7a-625a-49f1-93bb-c89ebf24115a", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-routing-request-id": "WESTUS2:20230131T063617Z:11830f7a-625a-49f1-93bb-c89ebf24115a" + "x-ms-correlation-request-id": "799e58e3-3b4b-429a-a803-6bbd5f055d72", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "WESTUS:20230214T015836Z:799e58e3-3b4b-429a-a803-6bbd5f055d72" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/8DDB1004A4386BD3", - "operationId": "8DDB1004A4386BD3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/4D6B8D4FBE183EB3", + "operationId": "4D6B8D4FBE183EB3", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:36:15.1001071Z", - "duration": "PT19.0438376S", - "trackingId": "0efdb0da-e2a1-4e6d-81e6-ffa586e9c4c2", + "timestamp": "2023-02-14T01:58:35.4830183Z", + "duration": "PT17.5464634S", + "trackingId": "45c003a1-66f5-4469-b7e9-3d3bb63af4f5", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "timestamp": "2023-02-14T01:58:12.7584585Z", + "duration": "PT23.5109547S", + "trackingId": "979bc1e7-fae7-4edb-84f9-d809790dc427", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:55.9836527Z", - "duration": "PT25.8858588S", - "trackingId": "a84c6e50-81f6-42f1-809f-423e82dd69aa", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:51.5691245Z", - "duration": "PT21.4713306S", - "trackingId": "95c37555-0b6d-470e-a5ad-d42dfd1b6159", + "timestamp": "2023-02-14T01:58:17.8883547Z", + "duration": "PT28.6408509S", + "trackingId": "daa68f42-31e9-4f6d-839d-cc9478791dc7", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/08585264599578810839", - "operationId": "08585264599578810839", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/08585252670204051991", + "operationId": "08585252670204051991", "properties": { "provisioningOperation": "EvaluateDeploymentOutput", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:36:15.2650053Z", - "duration": "PT19.2087358S", - "trackingId": "ead51d5b-acf4-4c74-8efb-46867403add5", + "timestamp": "2023-02-14T01:58:35.7451818Z", + "duration": "PT17.8086269S", + "trackingId": "d4efd9af-7bb2-49f1-a0df-c704693cac6b", "statusCode": "OK" } } @@ -2877,110 +2832,110 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_61875381419-3230876/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_103236817400-7321650/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "3241", + "Content-Length": "3247", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:17 GMT", + "Date": "Tue, 14 Feb 2023 01:58:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa22a129-6a15-48ed-a0e6-4dd0e7d1b609", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-routing-request-id": "WESTUS2:20230131T063618Z:aa22a129-6a15-48ed-a0e6-4dd0e7d1b609" + "x-ms-correlation-request-id": "0266cbbb-e700-4c39-bf44-b8e24aa13066", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "WESTUS:20230214T015837Z:0266cbbb-e700-4c39-bf44-b8e24aa13066" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/8DDB1004A4386BD3", - "operationId": "8DDB1004A4386BD3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/4D6B8D4FBE183EB3", + "operationId": "4D6B8D4FBE183EB3", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:36:15.1001071Z", - "duration": "PT19.0438376S", - "trackingId": "0efdb0da-e2a1-4e6d-81e6-ffa586e9c4c2", + "timestamp": "2023-02-14T01:58:35.4830183Z", + "duration": "PT17.5464634S", + "trackingId": "45c003a1-66f5-4469-b7e9-3d3bb63af4f5", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_61875381419" + "resourceName": "e2etest_test_103236817400" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/517225A2078A2466", - "operationId": "517225A2078A2466", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/BF2EAD347C7BFD76", + "operationId": "BF2EAD347C7BFD76", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:38.0896775Z", - "duration": "PT8.0398163S", - "trackingId": "fb2c9da4-7305-45c8-9e91-33df33740c39", + "timestamp": "2023-02-14T01:58:12.7584585Z", + "duration": "PT23.5109547S", + "trackingId": "979bc1e7-fae7-4edb-84f9-d809790dc427", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightsaf9d813e", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsightsaf9d813e" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault9562d025", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault9562d025" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/B1E02F320FAEE508", - "operationId": "B1E02F320FAEE508", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/AF7BA9617A0E8388", + "operationId": "AF7BA9617A0E8388", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:55.9836527Z", - "duration": "PT25.8858588S", - "trackingId": "a84c6e50-81f6-42f1-809f-423e82dd69aa", + "timestamp": "2023-02-14T01:57:56.960842Z", + "duration": "PT7.7666131S", + "trackingId": "5514a26d-3873-4d5e-a714-bdfb9d6721d2", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea20bc2d14" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights1203ec5a", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights1203ec5a" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/EE203FBEA70B79E6", - "operationId": "EE203FBEA70B79E6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/C57E97E656DC9765", + "operationId": "C57E97E656DC9765", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:35:51.5691245Z", - "duration": "PT21.4713306S", - "trackingId": "95c37555-0b6d-470e-a5ad-d42dfd1b6159", + "timestamp": "2023-02-14T01:58:17.8883547Z", + "duration": "PT28.6408509S", + "trackingId": "daa68f42-31e9-4f6d-839d-cc9478791dc7", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault7299b64a", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault7299b64a" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstoragea505f52c3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_61875381419-3230876/operations/08585264599578810839", - "operationId": "08585264599578810839", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_103236817400-7321650/operations/08585252670204051991", + "operationId": "08585252670204051991", "properties": { "provisioningOperation": "EvaluateDeploymentOutput", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:36:15.2650053Z", - "duration": "PT19.2087358S", - "trackingId": "ead51d5b-acf4-4c74-8efb-46867403add5", + "timestamp": "2023-02-14T01:58:35.7451818Z", + "duration": "PT17.8086269S", + "trackingId": "d4efd9af-7bb2-49f1-a0df-c704693cac6b", "statusCode": "OK" } } @@ -2988,13 +2943,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3002,11 +2957,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:18 GMT", + "Date": "Tue, 14 Feb 2023 01:58:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7c4b15de7eae99d0dd98d92f72fc8cfc-4ffc47dbf93d36ab-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-81cf22f8945ab4903086dd946293c5ac-df2ab3556ad90a22-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -3015,48 +2970,53 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a13f0447-d46d-4609-a5cf-77f8ec056f28", - "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-correlation-request-id": "454916ea-ff67-4e74-a971-5a9494aa1b98", + "x-ms-ratelimit-remaining-subscription-reads": "11941", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063618Z:a13f0447-d46d-4609-a5cf-77f8ec056f28", - "x-request-time": "0.025" + "x-ms-routing-request-id": "WESTUS:20230214T015837Z:454916ea-ff67-4e74-a971-5a9494aa1b98", + "x-request-time": "0.030" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "name": "e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "name": "e2etest_test_103236817400", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_61875381419 display name", - "description": "e2etest_test_61875381419 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault7299b64a", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightsaf9d813e", + "friendlyName": "e2etest_test_103236817400 display name", + "description": "e2etest_test_103236817400 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault9562d025", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights1203ec5a", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "4375e876-090a-4f5b-9749-7dac18890466", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:58:19.0947305Z", "notebookInfo": { - "resourceId": "1f59ad6dc6b7492a80070766d1f65bd0", - "fqdn": "ml-e2etesttest-eastus2euap-1ab87329-7584-40e4-aa86-7501c6f7d9ed.eastus2euap.notebooks.azure.net", + "resourceId": "ac433992e2eb4df4b5deb4d2caf2d713", + "fqdn": "ml-e2etesttest-eastus2euap-4375e876-090a-4f5b-9749-7dac18890466.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "1ab87329-7584-40e4-aa86-7501c6f7d9ed", + "workspaceId": "4375e876-090a-4f5b-9749-7dac18890466", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "primaryUserAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe", "sasGetterUri": "", "enableDataIsolation": false @@ -3067,12 +3027,12 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "userAssignedIdentities": { "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe": { - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" }, "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2": { - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, @@ -3082,23 +3042,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:35:57.7432083Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:58:19.0947305Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:35:57.7432083Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:58:19.0947305Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3106,11 +3066,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:18 GMT", + "Date": "Tue, 14 Feb 2023 01:58:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0b722ca931fbf2640dd9c6f4e2ee229c-362e83dd86e394e4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-822906abbf35c9ff4cec8c92bb3dfd31-f6fade185cea88b5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -3119,47 +3079,52 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec226103-fd77-4437-b27a-c9d1dea6d38e", - "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-correlation-request-id": "3fb1903b-e35d-4411-8347-8641b343cc33", + "x-ms-ratelimit-remaining-subscription-reads": "11940", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063618Z:ec226103-fd77-4437-b27a-c9d1dea6d38e", - "x-request-time": "0.028" + "x-ms-routing-request-id": "WESTUS:20230214T015838Z:3fb1903b-e35d-4411-8347-8641b343cc33", + "x-request-time": "0.038" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "name": "e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "name": "e2etest_test_103236817400", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_61875381419 display name", - "description": "e2etest_test_61875381419 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault7299b64a", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightsaf9d813e", + "friendlyName": "e2etest_test_103236817400 display name", + "description": "e2etest_test_103236817400 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault9562d025", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights1203ec5a", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "4375e876-090a-4f5b-9749-7dac18890466", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:58:19.0947305Z", "notebookInfo": { - "resourceId": "1f59ad6dc6b7492a80070766d1f65bd0", - "fqdn": "ml-e2etesttest-eastus2euap-1ab87329-7584-40e4-aa86-7501c6f7d9ed.eastus2euap.notebooks.azure.net", + "resourceId": "ac433992e2eb4df4b5deb4d2caf2d713", + "fqdn": "ml-e2etesttest-eastus2euap-4375e876-090a-4f5b-9749-7dac18890466.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "1ab87329-7584-40e4-aa86-7501c6f7d9ed", + "workspaceId": "4375e876-090a-4f5b-9749-7dac18890466", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "primaryUserAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe", "sasGetterUri": "", @@ -3171,12 +3136,12 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "userAssignedIdentities": { "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe": { - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" }, "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2": { - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, @@ -3186,23 +3151,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:35:57.7432083Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:58:19.0947305Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:35:57.7432083Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:58:19.0947305Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3210,11 +3175,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:18 GMT", + "Date": "Tue, 14 Feb 2023 01:58:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f5bb5f2ad27d1483e7acea0594bf747c-647e8ab84b37a0f5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-df5ce6ef50b62a3c178522d1221d2754-9d6ad4161cd5af11-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -3223,48 +3188,53 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c80ed012-2615-4532-8b43-91af0b4eca4a", - "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-correlation-request-id": "b68698d4-0571-4b79-b293-9b92901b49c0", + "x-ms-ratelimit-remaining-subscription-reads": "11939", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063619Z:c80ed012-2615-4532-8b43-91af0b4eca4a", - "x-request-time": "0.028" + "x-ms-routing-request-id": "WESTUS:20230214T015838Z:b68698d4-0571-4b79-b293-9b92901b49c0", + "x-request-time": "0.035" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "name": "e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "name": "e2etest_test_103236817400", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_61875381419 display name", - "description": "e2etest_test_61875381419 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault7299b64a", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightsaf9d813e", + "friendlyName": "e2etest_test_103236817400 display name", + "description": "e2etest_test_103236817400 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault9562d025", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights1203ec5a", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "4375e876-090a-4f5b-9749-7dac18890466", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:58:19.0947305Z", "notebookInfo": { - "resourceId": "1f59ad6dc6b7492a80070766d1f65bd0", - "fqdn": "ml-e2etesttest-eastus2euap-1ab87329-7584-40e4-aa86-7501c6f7d9ed.eastus2euap.notebooks.azure.net", + "resourceId": "ac433992e2eb4df4b5deb4d2caf2d713", + "fqdn": "ml-e2etesttest-eastus2euap-4375e876-090a-4f5b-9749-7dac18890466.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "1ab87329-7584-40e4-aa86-7501c6f7d9ed", + "workspaceId": "4375e876-090a-4f5b-9749-7dac18890466", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "primaryUserAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe", "sasGetterUri": "", "enableDataIsolation": false @@ -3275,12 +3245,12 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "userAssignedIdentities": { "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe": { - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" }, "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2": { - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, @@ -3290,29 +3260,29 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:35:57.7432083Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:58:19.0947305Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:35:57.7432083Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:58:19.0947305Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "896", + "Content-Length": "920", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "identity": { "type": "UserAssigned", @@ -3322,42 +3292,43 @@ } }, "properties": { - "description": "e2etest_test_61875381419 description", - "friendlyName": "e2etest_test_61875381419 display name", + "description": "e2etest_test_103236817400 description", + "friendlyName": "e2etest_test_103236817400 display name", "primaryUserAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2", "publicNetworkAccess": "Enabled", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightsaf9d813e" + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights1203ec5a", + "managedNetwork": {} } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/UFGhE2S6e0LGplQqKS6rlmKVHG4Zbla7hvYJ5g5uKuE?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/9qkvHpGNTYGgR4G-hFVeXaguzrLCsCgueBybeWheAlU?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:36:19 GMT", + "Date": "Tue, 14 Feb 2023 01:58:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/UFGhE2S6e0LGplQqKS6rlmKVHG4Zbla7hvYJ5g5uKuE?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/9qkvHpGNTYGgR4G-hFVeXaguzrLCsCgueBybeWheAlU?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7202da8-a9fc-4fa6-b836-a24edc6cf9f0", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "00ee2025-0255-4081-850e-b3fba0b21798", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063620Z:e7202da8-a9fc-4fa6-b836-a24edc6cf9f0", - "x-request-time": "0.111" + "x-ms-routing-request-id": "WESTUS:20230214T015839Z:00ee2025-0255-4081-850e-b3fba0b21798", + "x-request-time": "0.170" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/UFGhE2S6e0LGplQqKS6rlmKVHG4Zbla7hvYJ5g5uKuE?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/9qkvHpGNTYGgR4G-hFVeXaguzrLCsCgueBybeWheAlU?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3365,34 +3336,34 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:20 GMT", + "Date": "Tue, 14 Feb 2023 01:58:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9c1c55df6dda77ebbdf8ab7a3e7d68af-1340290d0bceac2a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2dff85be5702cee6f1b5002cbd5f5f33-836782af70ef37c9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bedc339a-c783-40ba-8b73-594798b680ac", - "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-correlation-request-id": "9ba5bab5-37b4-4bf5-a90e-3b3d19265c9f", + "x-ms-ratelimit-remaining-subscription-reads": "11938", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063620Z:bedc339a-c783-40ba-8b73-594798b680ac", - "x-request-time": "0.022" + "x-ms-routing-request-id": "WESTUS:20230214T015839Z:9ba5bab5-37b4-4bf5-a90e-3b3d19265c9f", + "x-request-time": "0.019" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/UFGhE2S6e0LGplQqKS6rlmKVHG4Zbla7hvYJ5g5uKuE?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/9qkvHpGNTYGgR4G-hFVeXaguzrLCsCgueBybeWheAlU?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3400,21 +3371,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:50 GMT", + "Date": "Tue, 14 Feb 2023 01:59:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-46a9e6b67e1c1c0e87826f2ce91b89a6-a4403144ed43f85f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8e21dd3fc0f58fd9ebbfba89fea3df01-fff234efcd0637be-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "525356bb-aa83-4a89-a895-908db8c801fa", - "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-correlation-request-id": "d82578d7-4b3f-4f5a-ab24-386cd2cf7c76", + "x-ms-ratelimit-remaining-subscription-reads": "11937", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063650Z:525356bb-aa83-4a89-a895-908db8c801fa", - "x-request-time": "0.025" + "x-ms-routing-request-id": "WESTUS:20230214T015909Z:d82578d7-4b3f-4f5a-ab24-386cd2cf7c76", + "x-request-time": "0.021" }, "ResponseBody": { "status": "Succeeded", @@ -3422,13 +3393,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3436,11 +3407,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:50 GMT", + "Date": "Tue, 14 Feb 2023 01:59:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-63caf6008dfb6d970a084fd871ea0797-1a850f4503a3379c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-70780e7d608ef103a1849df13ca6655d-e3da91c2ab1f7476-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -3449,48 +3420,53 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "185fdffa-e776-4dc6-b10a-fb0f7c3ed534", - "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-correlation-request-id": "9b7035a4-2d7a-4b68-8c82-75f56f9660e3", + "x-ms-ratelimit-remaining-subscription-reads": "11936", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063650Z:185fdffa-e776-4dc6-b10a-fb0f7c3ed534", - "x-request-time": "0.036" + "x-ms-routing-request-id": "WESTUS:20230214T015910Z:9b7035a4-2d7a-4b68-8c82-75f56f9660e3", + "x-request-time": "0.027" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "name": "e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "name": "e2etest_test_103236817400", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_61875381419 display name", - "description": "e2etest_test_61875381419 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault7299b64a", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightsaf9d813e", + "friendlyName": "e2etest_test_103236817400 display name", + "description": "e2etest_test_103236817400 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault9562d025", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights1203ec5a", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "4375e876-090a-4f5b-9749-7dac18890466", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:58:19.0947305Z", "notebookInfo": { - "resourceId": "1f59ad6dc6b7492a80070766d1f65bd0", - "fqdn": "ml-e2etesttest-eastus2euap-1ab87329-7584-40e4-aa86-7501c6f7d9ed.eastus2euap.notebooks.azure.net", + "resourceId": "ac433992e2eb4df4b5deb4d2caf2d713", + "fqdn": "ml-e2etesttest-eastus2euap-4375e876-090a-4f5b-9749-7dac18890466.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "1ab87329-7584-40e4-aa86-7501c6f7d9ed", + "workspaceId": "4375e876-090a-4f5b-9749-7dac18890466", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", "primaryUserAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2", "sasGetterUri": "", "enableDataIsolation": false @@ -3501,12 +3477,12 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "userAssignedIdentities": { "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe": { - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" }, "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2": { - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, @@ -3516,23 +3492,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:35:57.7432083Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:58:19.0947305Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:36:20.0701286Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:58:39.2582298Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3540,11 +3516,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:36:50 GMT", + "Date": "Tue, 14 Feb 2023 01:59:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-88d1d6d246c27124be487e113b5a4d4b-b5425f643121ae15-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-398eb4db48da7b2942101acb06245550-30a99abda026351f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -3553,48 +3529,53 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8d597ea-37e7-479a-b546-18236ccc740f", - "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-correlation-request-id": "56a58612-dfd1-46b8-b739-fb46b5090cd4", + "x-ms-ratelimit-remaining-subscription-reads": "11935", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063651Z:f8d597ea-37e7-479a-b546-18236ccc740f", - "x-request-time": "0.027" + "x-ms-routing-request-id": "WESTUS:20230214T015910Z:56a58612-dfd1-46b8-b739-fb46b5090cd4", + "x-request-time": "0.030" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "name": "e2etest_test_61875381419", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "name": "e2etest_test_103236817400", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_61875381419 display name", - "description": "e2etest_test_61875381419 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault7299b64a", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightsaf9d813e", + "friendlyName": "e2etest_test_103236817400 display name", + "description": "e2etest_test_103236817400 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault9562d025", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights1203ec5a", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "4375e876-090a-4f5b-9749-7dac18890466", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:58:19.0947305Z", "notebookInfo": { - "resourceId": "1f59ad6dc6b7492a80070766d1f65bd0", - "fqdn": "ml-e2etesttest-eastus2euap-1ab87329-7584-40e4-aa86-7501c6f7d9ed.eastus2euap.notebooks.azure.net", + "resourceId": "ac433992e2eb4df4b5deb4d2caf2d713", + "fqdn": "ml-e2etesttest-eastus2euap-4375e876-090a-4f5b-9749-7dac18890466.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "1ab87329-7584-40e4-aa86-7501c6f7d9ed", + "workspaceId": "4375e876-090a-4f5b-9749-7dac18890466", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "primaryUserAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2", "sasGetterUri": "", "enableDataIsolation": false @@ -3605,12 +3586,12 @@ "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "userAssignedIdentities": { "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe": { - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" }, "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2": { - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, @@ -3620,24 +3601,24 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:35:57.7432083Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:58:19.0947305Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:36:20.0701286Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:58:39.2582298Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightsaf9d813e?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights1203ec5a?api-version=2015-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3645,29 +3626,29 @@ "Access-Control-Expose-Headers": "Request-Context", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:36:58 GMT", + "Date": "Tue, 14 Feb 2023 01:59:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70af0557-c622-4eb5-afdd-c78782e2adfb", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTUS2:20230131T063658Z:70af0557-c622-4eb5-afdd-c78782e2adfb", + "x-ms-correlation-request-id": "8d20bdf1-7b14-4126-a56d-bbcbf0781893", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "WESTUS:20230214T015915Z:8d20bdf1-7b14-4126-a56d-bbcbf0781893", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea20bc2d14?api-version=2019-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea505f52c3?api-version=2019-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3675,85 +3656,123 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:04 GMT", + "Date": "Tue, 14 Feb 2023 01:59:21 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", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abc408f5-ade8-4ce6-98b1-09ca1a2c83bd", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTUS2:20230131T063704Z:abc408f5-ade8-4ce6-98b1-09ca1a2c83bd" + "x-ms-correlation-request-id": "292d99d1-b72a-4be8-a6bf-d31af2fca880", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-routing-request-id": "WESTUS:20230214T015921Z:292d99d1-b72a-4be8-a6bf-d31af2fca880" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault7299b64a?api-version=2019-09-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault9562d025?api-version=2019-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:37:09 GMT", + "Date": "Tue, 14 Feb 2023 01:59:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95c659b7-4358-48bb-a51f-5d95d6613f2f", - "x-ms-keyvault-service-version": "1.5.655.1", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-routing-request-id": "WESTUS2:20230131T063709Z:95c659b7-4358-48bb-a51f-5d95d6613f2f" + "x-ms-correlation-request-id": "7700629d-14cf-4782-9991-d6061a4779a6", + "x-ms-keyvault-service-version": "1.5.666.2", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "WESTUS:20230214T015925Z:7700629d-14cf-4782-9991-d6061a4779a6" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_61875381419?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_103236817400?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/0ea047a6-741d-45cc-a9e3-ace2d554a8a4?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/4a229f80-49b4-403b-916a-fac78a6f3d52?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:37:09 GMT", + "Date": "Tue, 14 Feb 2023 01:59:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/0ea047a6-741d-45cc-a9e3-ace2d554a8a4?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/4a229f80-49b4-403b-916a-fac78a6f3d52?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3be0e3e9-5151-4a37-8311-6e01ec7ee389", - "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-correlation-request-id": "9830f038-f896-4279-bcd2-df7fb91b94d0", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063710Z:3be0e3e9-5151-4a37-8311-6e01ec7ee389", - "x-request-time": "0.109" + "x-ms-routing-request-id": "WESTUS:20230214T015925Z:9830f038-f896-4279-bcd2-df7fb91b94d0", + "x-request-time": "0.150" }, "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/0caf7ec9-615a-4491-bad8-64ce023324e1/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/4a229f80-49b4-403b-916a-fac78a6f3d52?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTY3NjMzNjYzMCwibmJmIjoxNjc2MzM2NjMwLCJleHAiOjE2NzYzNDA5MTcsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9jMWFmZTY2My05MmU3LTQ5M2MtOWI1Ny0xNDBlZTkxNzQ1NDkvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhUQUFBQVNHcFJmeEdFVEFmb0Y3Tm1KYTZqcEhwMmRaaUMzYXg3QTllcjUxZ0t0Rmt2cFJoU3ZNczRob2FyVmJRd09IVzZnN05NSmZPSmk1VVZ5U3ZSS0V6Vm5ZeVU0M3RUQ0h0b0J1djMwTUNRdXdvPSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6ImM0YzQ4YTY1LTQ4YjUtNDUyNS1hYjU3LWU0NjljYjcwYTU2ZSIsImZhbWlseV9uYW1lIjoiSGFycmluZ3RvbiIsImdpdmVuX25hbWUiOiJKb3NoIiwiaXBhZGRyIjoiMTMxLjEwNy4xLjI0MiIsIm5hbWUiOiJKb3NoIEhhcnJpbmd0b24iLCJvaWQiOiJjMWFmZTY2My05MmU3LTQ5M2MtOWI1Ny0xNDBlZTkxNzQ1NDkiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctNTk1OTE1ODgiLCJwdWlkIjoiMTAwMzIwMDIxNUUzOEJCRSIsInJoIjoiMC5BUm9BdjRqNWN2R0dyMEdScXkxODBCSGJSMFpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTWFBTzAuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiVDM1ZDZtbmotanNZRE9yeVFOeDA0OVVsNXlrazZIdEU0UU9BVUQ4RXpsWSIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiam9oYXJyaW5ndG9uQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJqb2hhcnJpbmd0b25AbWljcm9zb2Z0LmNvbSIsInV0aSI6IldvNTFFdnJOQ1VPQlhjWVIzeUMzQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSJdLCJ4bXNfY2MiOlsiQ1AxIl0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.L6ABFNDSxUuPwu_WyKO_JhtvoJd16jj6YzjKRDZePk7YJyZxz1h6MU_70aTvDs0hvl_6Kzj5facI7yL8ZJuTOsoyG9s5_I9HHoBbt_960qOFSzwJh5xNS2uSvSmQUUrderAuz7lA5DLAxNEwJE5ej_5BStcbIsGuAjpSiHxR30lgVb_9TruYJ5WyTWB3_xYOvcmHxrnU-qOv__E1WO8e_Px_K_LhsxA8fxxuDoCMqUtZZ1cuZKIh2dQL70bZsEV0PcOgZhRizbqTLIzHzbd1GI8qTish5BhRFPqQoFb--KCX0ChM7yAwmFNTgEJTubnZ4auPEywRm-B_1xhc6Fpz0Q", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)", + "x-ms-client-request-id": "34e761c1-ac0b-11ed-92ee-f42679b37e95" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:59:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-dad5e66ac25bce78bb5e5550e4ee9730-80db7666cdc3fc93-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2euap-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dec5c34f-b5cf-4b1e-81f9-981b1c9a6fe8", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-request-id": "dec5c34f-b5cf-4b1e-81f9-981b1c9a6fe8", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015925Z:dec5c34f-b5cf-4b1e-81f9-981b1c9a6fe8", + "x-request-time": "0.018" + }, + "ResponseBody": { + "status": "InProgress" + } } ], "Variables": { - "deployment_name": "e2etest_test_61875381419-3230876", - "insights_name": "e2etesttinsightsaf9d813e", - "keyvault_name": "e2etesttkeyvault7299b64a", - "storage_name": "e2etesttstoragea20bc2d14", - "wps_name": "test_61875381419" + "deployment_name": "e2etest_test_103236817400-7321650", + "insights_name": "e2etesttinsights1203ec5a", + "keyvault_name": "e2etesttkeyvault9562d025", + "storage_name": "e2etesttstoragea505f52c3", + "wps_name": "test_103236817400" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_update_sai_to_sai_and_uai_workspace_with_uai_deletion.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_update_sai_to_sai_and_uai_workspace_with_uai_deletion.json index 277035f75e268..b986d06cec2e5 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_update_sai_to_sai_and_uai_workspace_with_uai_deletion.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_update_sai_to_sai_and_uai_workspace_with_uai_deletion.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -15,19 +15,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:13 GMT", + "Date": "Tue, 14 Feb 2023 01:59:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "160353ed-d5ad-4b8c-8036-c04d8d9d014e", + "x-ms-correlation-request-id": "7c8b119d-e76e-4f08-876f-eaadf64c1fda", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTUS2:20230131T063713Z:160353ed-d5ad-4b8c-8036-c04d8d9d014e" + "x-ms-routing-request-id": "WESTUS:20230214T015927Z:7c8b119d-e76e-4f08-876f-eaadf64c1fda" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } }, @@ -38,7 +38,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -47,15 +47,15 @@ "Content-Encoding": "gzip", "Content-Length": "272", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:16 GMT", + "Date": "Tue, 14 Feb 2023 01:59:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc39620a-d381-4262-94d9-65cb8714856f", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-routing-request-id": "WESTUS2:20230131T063716Z:dc39620a-d381-4262-94d9-65cb8714856f" + "x-ms-correlation-request-id": "0c2061a8-53bc-45f2-9459-71acfaf954f5", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "WESTUS:20230214T015928Z:0c2061a8-53bc-45f2-9459-71acfaf954f5" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus", @@ -74,7 +74,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -83,15 +83,15 @@ "Content-Encoding": "gzip", "Content-Length": "322", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:18 GMT", + "Date": "Tue, 14 Feb 2023 01:59:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94ab38f3-22dd-44b5-95e0-3bafa5adfd09", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-routing-request-id": "WESTUS2:20230131T063719Z:94ab38f3-22dd-44b5-95e0-3bafa5adfd09" + "x-ms-correlation-request-id": "1fb6b67a-18d2-434a-b047-8c83f821177c", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-routing-request-id": "WESTUS:20230214T015929Z:1fb6b67a-18d2-434a-b047-8c83f821177c" }, "ResponseBody": { "value": [ @@ -105,15 +105,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818?api-version=2020-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "19279", + "Content-Length": "19620", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -505,6 +505,15 @@ "metadata": { "description": "ARM identifier of primary user assigned managed identity, in case multiple ones are specified. Also the default managed identity for clusterless compute." } + }, + "managedNetwork": { + "type": "object", + "defaultValue": { + "isolationMode": "Disabled" + }, + "metadata": { + "description": "Managed network settings to be used for the workspace. If not specified, isolation mode Disabled is the default" + } } }, "variables": { @@ -663,7 +672,7 @@ { "condition": "[variables(\u0027enablePE\u0027)]", "type": "Microsoft.MachineLearningServices/workspaces", - "apiVersion": "2022-01-01-preview", + "apiVersion": "2022-12-01-preview", "tags": "[parameters(\u0027tagValues\u0027)]", "name": "[parameters(\u0027workspaceName\u0027)]", "location": "[parameters(\u0027location\u0027)]", @@ -696,7 +705,8 @@ "storageAccountArmId": "[parameters(\u0027encryption_storage_resourceid\u0027)]", "SearchAccountArmId": "[parameters(\u0027encryption_search_resourceid\u0027)]" }, - "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]" + "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]", + "managedNetwork": "[parameters(\u0027managedNetwork\u0027)]" } }, { @@ -740,27 +750,27 @@ "value": "eastus2euap" }, "workspaceName": { - "value": "e2etest_test_797279886032" + "value": "e2etest_test_786182016259" }, "resourceGroupName": { "value": "00000" }, "description": { - "value": "e2etest_test_797279886032 description" + "value": "e2etest_test_786182016259 description" }, "friendlyName": { - "value": "e2etest_test_797279886032 display name" + "value": "e2etest_test_786182016259 display name" }, "tagValues": { "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "keyVaultOption": { "value": "new" }, "keyVaultName": { - "value": "e2etesttkeyvaultd93792c0" + "value": "e2etesttkeyvault195e233b" }, "keyVaultResourceGroupName": { "value": "00000" @@ -769,7 +779,7 @@ "value": "new" }, "storageAccountName": { - "value": "e2etesttstoragea0da1e5b0" + "value": "e2etesttstorage50cc96bf3" }, "storageAccountResourceGroupName": { "value": "00000" @@ -778,7 +788,7 @@ "value": "new" }, "applicationInsightsName": { - "value": "e2etesttinsights521666cf" + "value": "e2etesttinsights7bb983b1" }, "applicationInsightsResourceGroupName": { "value": "00000" @@ -856,6 +866,11 @@ }, "primaryUserAssignedIdentity": { "value": "" + }, + "managedNetwork": { + "value": { + "isolationMode": "Disabled" + } } }, "mode": "incremental" @@ -863,37 +878,37 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "Cache-Control": "no-cache", - "Content-Length": "7876", + "Content-Length": "7945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:24 GMT", + "Date": "Tue, 14 Feb 2023 01:59:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07327898-3b16-44a6-84fd-67afbd0e9d01", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTUS2:20230131T063725Z:07327898-3b16-44a6-84fd-67afbd0e9d01" + "x-ms-correlation-request-id": "70a27ebd-3348-4a88-9665-73ea2a2843c4", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-routing-request-id": "WESTUS:20230214T015933Z:70a27ebd-3348-4a88-9665-73ea2a2843c4" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603", - "name": "e2etest_test_797279886032-5286603", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818", + "name": "e2etest_test_786182016259-500818", "type": "Microsoft.Resources/deployments", "properties": { - "templateHash": "12037445159745527008", + "templateHash": "4984303229931942319", "parameters": { "workspaceName": { "type": "String", - "value": "e2etest_test_797279886032" + "value": "e2etest_test_786182016259" }, "description": { "type": "String", - "value": "e2etest_test_797279886032 description" + "value": "e2etest_test_786182016259 description" }, "friendlyName": { "type": "String", - "value": "e2etest_test_797279886032 display name" + "value": "e2etest_test_786182016259 display name" }, "location": { "type": "String", @@ -909,7 +924,7 @@ }, "storageAccountName": { "type": "String", - "value": "e2etesttstoragea0da1e5b0" + "value": "e2etesttstorage50cc96bf3" }, "storageAccountType": { "type": "String", @@ -933,7 +948,7 @@ }, "keyVaultName": { "type": "String", - "value": "e2etesttkeyvaultd93792c0" + "value": "e2etesttkeyvault195e233b" }, "keyVaultBehindVNet": { "type": "String", @@ -953,7 +968,7 @@ }, "applicationInsightsName": { "type": "String", - "value": "e2etesttinsights521666cf" + "value": "e2etesttinsights7bb983b1" }, "applicationInsightsResourceGroupName": { "type": "String", @@ -1044,7 +1059,7 @@ "tagValues": { "type": "Object", "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "privateEndpointName": { @@ -1092,13 +1107,19 @@ "primaryUserAssignedIdentity": { "type": "String", "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "Disabled" + } } }, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2023-01-31T06:37:24.6154674Z", - "duration": "PT0.0008257S", - "correlationId": "07327898-3b16-44a6-84fd-67afbd0e9d01", + "timestamp": "2023-02-14T01:59:32.9621519Z", + "duration": "PT0.0005342S", + "correlationId": "70a27ebd-3348-4a88-9665-73ea2a2843c4", "providers": [ { "namespace": "Microsoft.Storage", @@ -1166,9 +1187,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" }, { "dependsOn": [ @@ -1178,9 +1199,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" }, { "dependsOn": [ @@ -1197,19 +1218,19 @@ { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "resourceName": "e2etesttinsights7bb983b1" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", @@ -1217,16 +1238,16 @@ "resourceName": "name" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etest_test_786182016259" }, { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etest_test_786182016259" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", @@ -1243,77 +1264,111 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "21", + "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:24 GMT", + "Date": "Tue, 14 Feb 2023 01:59:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cf6c66e-b931-405e-93e6-f099be3ac3dc", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-routing-request-id": "WESTUS2:20230131T063725Z:9cf6c66e-b931-405e-93e6-f099be3ac3dc" + "x-ms-correlation-request-id": "a662a59a-d290-4b83-8f8d-6b7c34145caa", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "WESTUS:20230214T015933Z:a662a59a-d290-4b83-8f8d-6b7c34145caa" }, "ResponseBody": { - "status": "Accepted" + "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "686", + "Content-Length": "2064", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:29 GMT", + "Date": "Tue, 14 Feb 2023 01:59:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88cb5874-f394-41f0-a7ec-a6eda8458e8e", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-routing-request-id": "WESTUS2:20230131T063730Z:88cb5874-f394-41f0-a7ec-a6eda8458e8e" + "x-ms-correlation-request-id": "a603d5e0-3656-4b53-836b-7b57c3b4dae8", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "WESTUS:20230214T015938Z:a603d5e0-3656-4b53-836b-7b57c3b4dae8" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:59:37.3402422Z", + "duration": "PT3.971894S", + "trackingId": "ee361557-27d2-4404-96f5-494db852030b", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage50cc96bf3" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "timestamp": "2023-02-14T01:59:36.9029963Z", + "duration": "PT3.4689905S", + "trackingId": "d435405d-e95e-4337-9021-26754e119a74", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -1321,13 +1376,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1336,79 +1391,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:30 GMT", + "Date": "Tue, 14 Feb 2023 01:59:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c643986-7a94-4530-a110-f8e9abce25a3", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTUS2:20230131T063730Z:0c643986-7a94-4530-a110-f8e9abce25a3" + "x-ms-correlation-request-id": "3bd19272-23de-4bd8-bb12-0cf6a48c1ecf", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "WESTUS:20230214T015938Z:3bd19272-23de-4bd8-bb12-0cf6a48c1ecf" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "1383", + "Content-Length": "2064", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:35 GMT", + "Date": "Tue, 14 Feb 2023 01:59:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33aa9600-01e5-4f42-8a4a-b6ed727ef8de", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTUS2:20230131T063735Z:33aa9600-01e5-4f42-8a4a-b6ed727ef8de" + "x-ms-correlation-request-id": "e475e269-6829-4fc9-8946-fc107111bb4f", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "WESTUS:20230214T015943Z:e475e269-6829-4fc9-8946-fc107111bb4f" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:31.4303707Z", - "duration": "PT5.9065851S", - "trackingId": "d67cd243-b96f-4f62-9101-238c55c7ccda", + "timestamp": "2023-02-14T01:59:37.3402422Z", + "duration": "PT3.971894S", + "trackingId": "ee361557-27d2-4404-96f5-494db852030b", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "timestamp": "2023-02-14T01:59:36.9029963Z", + "duration": "PT3.4689905S", + "trackingId": "d435405d-e95e-4337-9021-26754e119a74", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -1416,13 +1488,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1431,131 +1503,126 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:35 GMT", + "Date": "Tue, 14 Feb 2023 01:59:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a4bdee7-3877-4218-a16f-773a3b7dd1f5", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-routing-request-id": "WESTUS2:20230131T063736Z:5a4bdee7-3877-4218-a16f-773a3b7dd1f5" + "x-ms-correlation-request-id": "8f4e3f04-d047-4d70-87e3-2aa03d1aaf0a", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "WESTUS:20230214T015943Z:8f4e3f04-d047-4d70-87e3-2aa03d1aaf0a" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/0ea047a6-741d-45cc-a9e3-ace2d554a8a4?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", + "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:40 GMT", + "Date": "Tue, 14 Feb 2023 01:59:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-87a45406122b371a503bd66c63212977-c2ea2e300114c33c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90c0d0a2-434f-477d-95fc-5e04fae86994", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063740Z:90c0d0a2-434f-477d-95fc-5e04fae86994", - "x-request-time": "0.024" + "x-ms-correlation-request-id": "2e203d5e-0dec-4fbf-aae4-4a92a4f632ab", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "WESTUS:20230214T015949Z:2e203d5e-0dec-4fbf-aae4-4a92a4f632ab" }, "ResponseBody": { - "status": "InProgress" + "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2068", + "Content-Length": "2064", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:40 GMT", + "Date": "Tue, 14 Feb 2023 01:59:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d213a8ba-8a7a-48fc-b483-79432d3738a6", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-routing-request-id": "WESTUS2:20230131T063741Z:d213a8ba-8a7a-48fc-b483-79432d3738a6" + "x-ms-correlation-request-id": "f7f051e4-b5c8-492c-a1ba-dd10557a6971", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "WESTUS:20230214T015949Z:f7f051e4-b5c8-492c-a1ba-dd10557a6971" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:59:37.3402422Z", + "duration": "PT3.971894S", + "trackingId": "ee361557-27d2-4404-96f5-494db852030b", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:31.4303707Z", - "duration": "PT5.9065851S", - "trackingId": "d67cd243-b96f-4f62-9101-238c55c7ccda", - "statusCode": "Accepted", + "timestamp": "2023-02-14T01:59:36.9029963Z", + "duration": "PT3.4689905S", + "trackingId": "d435405d-e95e-4337-9021-26754e119a74", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault195e233b" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -1563,13 +1630,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1578,96 +1645,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:40 GMT", + "Date": "Tue, 14 Feb 2023 01:59:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d38dafb3-08a1-45de-9cae-76fbc6e2d3c3", + "x-ms-correlation-request-id": "f0461e9c-d933-4b84-83cf-419868bf6c53", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTUS2:20230131T063741Z:d38dafb3-08a1-45de-9cae-76fbc6e2d3c3" + "x-ms-routing-request-id": "WESTUS:20230214T015954Z:f0461e9c-d933-4b84-83cf-419868bf6c53" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2068", + "Content-Length": "2067", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:45 GMT", + "Date": "Tue, 14 Feb 2023 01:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea1e7179-7db2-4d93-bf3c-d4ce24ed0192", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTUS2:20230131T063746Z:ea1e7179-7db2-4d93-bf3c-d4ce24ed0192" + "x-ms-correlation-request-id": "d96f1dfd-c3aa-4d8e-bd69-9ebf45276fc4", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "WESTUS:20230214T015954Z:d96f1dfd-c3aa-4d8e-bd69-9ebf45276fc4" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:59:37.3402422Z", + "duration": "PT3.971894S", + "trackingId": "ee361557-27d2-4404-96f5-494db852030b", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:31.4303707Z", - "duration": "PT5.9065851S", - "trackingId": "d67cd243-b96f-4f62-9101-238c55c7ccda", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault195e233b" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -1675,13 +1742,48 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/4a229f80-49b4-403b-916a-fac78a6f3d52?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:59:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-e3d4994cdb02377a9c1e0c28bad1f464-ed13368c80aef2eb-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2euap-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e77d9727-85fc-4e87-8501-3110f6e297de", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015956Z:e77d9727-85fc-4e87-8501-3110f6e297de", + "x-request-time": "0.021" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1690,96 +1792,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:46 GMT", + "Date": "Tue, 14 Feb 2023 01:59:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3c740f3-285c-4590-93b3-fed840210004", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-routing-request-id": "WESTUS2:20230131T063746Z:d3c740f3-285c-4590-93b3-fed840210004" + "x-ms-correlation-request-id": "8283f499-e9a5-4050-9263-82951c668100", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-routing-request-id": "WESTUS:20230214T015959Z:8283f499-e9a5-4050-9263-82951c668100" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2785", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:51 GMT", + "Date": "Tue, 14 Feb 2023 01:59:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72556bf1-22a0-44a7-916b-8368896389a1", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-routing-request-id": "WESTUS2:20230131T063752Z:72556bf1-22a0-44a7-916b-8368896389a1" + "x-ms-correlation-request-id": "072821b8-9078-4b35-b171-57b5536ee21e", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "WESTUS:20230214T015959Z:072821b8-9078-4b35-b171-57b5536ee21e" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:59:59.8514692Z", + "duration": "PT2.9428792S", + "trackingId": "d7d53460-b93c-4111-86a7-177d6ad12fad", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -1787,13 +1906,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1802,126 +1921,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:51 GMT", + "Date": "Tue, 14 Feb 2023 02:00:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fa9c93e-74f1-4d30-b164-5114028e4e2e", + "x-ms-correlation-request-id": "5090fafb-8c95-4516-b2d3-33c657c556ce", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTUS2:20230131T063752Z:4fa9c93e-74f1-4d30-b164-5114028e4e2e" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61ab2271-d086-4d59-b3c5-f164334976d5", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-routing-request-id": "WESTUS2:20230131T063757Z:61ab2271-d086-4d59-b3c5-f164334976d5" + "x-ms-routing-request-id": "WESTUS:20230214T020004Z:5090fafb-8c95-4516-b2d3-33c657c556ce" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2785", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:37:56 GMT", + "Date": "Tue, 14 Feb 2023 02:00:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "625a1a61-2cd3-4e2a-942b-d71ebed70897", + "x-ms-correlation-request-id": "0d92ed1f-b4d8-4fe7-a163-9017bc55c643", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTUS2:20230131T063757Z:625a1a61-2cd3-4e2a-942b-d71ebed70897" + "x-ms-routing-request-id": "WESTUS:20230214T020005Z:0d92ed1f-b4d8-4fe7-a163-9017bc55c643" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:59:59.8514692Z", + "duration": "PT2.9428792S", + "trackingId": "d7d53460-b93c-4111-86a7-177d6ad12fad", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -1929,13 +2035,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1944,96 +2050,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:01 GMT", + "Date": "Tue, 14 Feb 2023 02:00:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e61d3d4-b4be-43c8-892a-50df4ea48d4e", + "x-ms-correlation-request-id": "c372e7fe-08c5-46b8-b440-5f777dd2fe7b", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTUS2:20230131T063802Z:1e61d3d4-b4be-43c8-892a-50df4ea48d4e" + "x-ms-routing-request-id": "WESTUS:20230214T020010Z:c372e7fe-08c5-46b8-b440-5f777dd2fe7b" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2785", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:02 GMT", + "Date": "Tue, 14 Feb 2023 02:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "390f57b6-ff9f-4a48-a188-894e0485961d", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-routing-request-id": "WESTUS2:20230131T063803Z:390f57b6-ff9f-4a48-a188-894e0485961d" + "x-ms-correlation-request-id": "174523df-2326-48a6-b495-26077472b7b6", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "WESTUS:20230214T020011Z:174523df-2326-48a6-b495-26077472b7b6" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:59:59.8514692Z", + "duration": "PT2.9428792S", + "trackingId": "d7d53460-b93c-4111-86a7-177d6ad12fad", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -2041,13 +2164,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2056,96 +2179,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:07 GMT", + "Date": "Tue, 14 Feb 2023 02:00:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a463a4b9-64af-40ab-8f5c-b0fad0d16889", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-routing-request-id": "WESTUS2:20230131T063807Z:a463a4b9-64af-40ab-8f5c-b0fad0d16889" + "x-ms-correlation-request-id": "13adf5f1-26ca-4264-9f57-5357ebe980c8", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "WESTUS:20230214T020015Z:13adf5f1-26ca-4264-9f57-5357ebe980c8" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2785", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:08 GMT", + "Date": "Tue, 14 Feb 2023 02:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f6f01c1-e934-476c-8dba-210f204b6e93", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-routing-request-id": "WESTUS2:20230131T063808Z:1f6f01c1-e934-476c-8dba-210f204b6e93" + "x-ms-correlation-request-id": "b7552dff-1b51-4ce9-86ef-a0cd746c51ff", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "WESTUS:20230214T020016Z:b7552dff-1b51-4ce9-86ef-a0cd746c51ff" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:59:59.8514692Z", + "duration": "PT2.9428792S", + "trackingId": "d7d53460-b93c-4111-86a7-177d6ad12fad", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -2153,48 +2293,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/0ea047a6-741d-45cc-a9e3-ace2d554a8a4?api-version=2022-10-01-preview\u0026type=async", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2e8447ee8bc4a6e8a4b2ed42d761ed0e-ae9fa6070df6fcc6-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00bf33b8-411f-420f-be69-b265e22285e3", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063810Z:00bf33b8-411f-420f-be69-b265e22285e3", - "x-request-time": "0.022" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2203,950 +2308,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:12 GMT", + "Date": "Tue, 14 Feb 2023 02:00:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fb47580-2649-40db-9698-16fcd0386073", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-routing-request-id": "WESTUS2:20230131T063813Z:4fb47580-2649-40db-9698-16fcd0386073" + "x-ms-correlation-request-id": "0848070a-dd8f-490e-a4a0-df57722901fd", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "WESTUS:20230214T020020Z:0848070a-dd8f-490e-a4a0-df57722901fd" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2065", + "Content-Length": "2780", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:13 GMT", + "Date": "Tue, 14 Feb 2023 02:00:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6dea75d5-bdfa-40bd-8f48-f04f1579cf94", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-routing-request-id": "WESTUS2:20230131T063813Z:6dea75d5-bdfa-40bd-8f48-f04f1579cf94" + "x-ms-correlation-request-id": "a7a0cd4f-b641-48eb-9f52-3bc1658a8957", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "WESTUS:20230214T020021Z:a7a0cd4f-b641-48eb-9f52-3bc1658a8957" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:00:21.3723708Z", + "duration": "PT24.4637808S", + "trackingId": "d80f8909-0fca-4475-af59-2bba323e8111", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20e01ddb-814f-434f-aedd-6049e95d3fbf", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-routing-request-id": "WESTUS2:20230131T063818Z:20e01ddb-814f-434f-aedd-6049e95d3fbf" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2065", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9e84e6d-5801-495a-a1b8-8351a6c8d31d", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-routing-request-id": "WESTUS2:20230131T063819Z:f9e84e6d-5801-495a-a1b8-8351a6c8d31d" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40cda70c-a204-4902-9d4e-9f1b1be424c0", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-routing-request-id": "WESTUS2:20230131T063823Z:40cda70c-a204-4902-9d4e-9f1b1be424c0" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2065", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2100b2ae-f94e-45cc-8837-ea5f67c0204a", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-routing-request-id": "WESTUS2:20230131T063824Z:2100b2ae-f94e-45cc-8837-ea5f67c0204a" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d57e3ff-97cf-4ad1-8639-07ee2cf69920", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTUS2:20230131T063828Z:8d57e3ff-97cf-4ad1-8639-07ee2cf69920" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2065", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c478eb14-29e6-492b-b10a-6bace4a1845f", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTUS2:20230131T063829Z:c478eb14-29e6-492b-b10a-6bace4a1845f" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78ff4de4-90ee-4f2c-ab7c-a5745fc3d5d7", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTUS2:20230131T063834Z:78ff4de4-90ee-4f2c-ab7c-a5745fc3d5d7" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2065", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0219cad-20fb-4863-abaf-7bc8a686ea6f", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTUS2:20230131T063835Z:f0219cad-20fb-4863-abaf-7bc8a686ea6f" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:37:30.2833825Z", - "duration": "PT4.7595969S", - "trackingId": "b9d4d2a8-bfaf-4561-89ac-25d59bf400a4", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff80c3de-8b7e-46e4-9549-1bf3c1854e04", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-routing-request-id": "WESTUS2:20230131T063839Z:ff80c3de-8b7e-46e4-9549-1bf3c1854e04" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2070", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b95e36c9-8eed-4a3e-bc3d-cccdde55ece6", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-routing-request-id": "WESTUS2:20230131T063840Z:b95e36c9-8eed-4a3e-bc3d-cccdde55ece6" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/0ea047a6-741d-45cc-a9e3-ace2d554a8a4?api-version=2022-10-01-preview\u0026type=async", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0573db151d1451775713f3d45410d095-1245b8f11d52eed0-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f8e5a33-3768-4136-8462-c358c68cd507", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063841Z:0f8e5a33-3768-4136-8462-c358c68cd507", - "x-request-time": "0.024" - }, - "ResponseBody": { - "status": "Succeeded", - "percentComplete": 100.0 - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39d68efa-b2c1-42b5-bf76-dbbf16b453fa", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTUS2:20230131T063844Z:39d68efa-b2c1-42b5-bf76-dbbf16b453fa" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2791", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbf4bdc6-9727-409d-84fb-82270253a62b", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTUS2:20230131T063846Z:dbf4bdc6-9727-409d-84fb-82270253a62b" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:38:40.8004467Z", - "duration": "PT4.3344637S", - "trackingId": "f3f2a4d7-0aa0-4e65-9e8f-1fc4d0baac05", - "statusCode": "Accepted", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3346a0fd-66cf-4eef-a3ac-1e7f1380d691", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTUS2:20230131T063850Z:3346a0fd-66cf-4eef-a3ac-1e7f1380d691" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2791", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c17903f-9243-40eb-a562-56d667d33f12", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTUS2:20230131T063851Z:5c17903f-9243-40eb-a562-56d667d33f12" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:38:40.8004467Z", - "duration": "PT4.3344637S", - "trackingId": "f3f2a4d7-0aa0-4e65-9e8f-1fc4d0baac05", - "statusCode": "Accepted", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttkeyvault195e233b" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -3154,13 +2422,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3169,242 +2437,148 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:55 GMT", + "Date": "Tue, 14 Feb 2023 02:00:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecc1ed93-073f-41df-93a2-30f70ffbbe4a", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-routing-request-id": "WESTUS2:20230131T063855Z:ecc1ed93-073f-41df-93a2-30f70ffbbe4a" + "x-ms-correlation-request-id": "e4e6486a-b275-43b9-b005-3c3f1d7118fa", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "WESTUS:20230214T020026Z:e4e6486a-b275-43b9-b005-3c3f1d7118fa" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2791", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:38:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39ebaa82-3b33-4f4e-87f1-47c4e939ce3b", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-routing-request-id": "WESTUS2:20230131T063857Z:39ebaa82-3b33-4f4e-87f1-47c4e939ce3b" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:38:40.8004467Z", - "duration": "PT4.3344637S", - "trackingId": "f3f2a4d7-0aa0-4e65-9e8f-1fc4d0baac05", - "statusCode": "Accepted", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/4a229f80-49b4-403b-916a-fac78a6f3d52?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:00 GMT", + "Date": "Tue, 14 Feb 2023 02:00:25 GMT", "Expires": "-1", "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-556ba3c64ad7cf6b322db4a3068bbda4-952d4d785ac38b73-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce2e011a-d6a3-455e-b0e5-876d03759c4e", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-routing-request-id": "WESTUS2:20230131T063900Z:ce2e011a-d6a3-455e-b0e5-876d03759c4e" + "x-ms-correlation-request-id": "bedab933-27e2-4a61-8c81-ed4a5c614ec5", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020026Z:bedab933-27e2-4a61-8c81-ed4a5c614ec5", + "x-request-time": "0.020" }, "ResponseBody": { - "status": "Running" + "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2786", + "Content-Length": "2780", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:02 GMT", + "Date": "Tue, 14 Feb 2023 02:00:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebc4c35e-47b0-415e-9c0b-9bf9989a2160", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-routing-request-id": "WESTUS2:20230131T063902Z:ebc4c35e-47b0-415e-9c0b-9bf9989a2160" + "x-ms-correlation-request-id": "5c6108f1-4593-4a3e-ac66-ebdaf9d75bd7", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-routing-request-id": "WESTUS:20230214T020027Z:5c6108f1-4593-4a3e-ac66-ebdaf9d75bd7" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:39:01.2789652Z", - "duration": "PT24.8129822S", - "trackingId": "6f10f517-245a-42f0-8b62-b91e818a2551", + "timestamp": "2023-02-14T02:00:23.5351205Z", + "duration": "PT26.6265305S", + "trackingId": "3fb429b5-9851-4d32-8f1a-b3ac6f826cc0", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault195e233b" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } } @@ -3412,13 +2586,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3427,268 +2601,127 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:05 GMT", + "Date": "Tue, 14 Feb 2023 02:00:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a30a5d5d-4980-45b6-9bf8-3c267f63300d", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-routing-request-id": "WESTUS2:20230131T063905Z:a30a5d5d-4980-45b6-9bf8-3c267f63300d" + "x-ms-correlation-request-id": "bf5bf7ff-e7d6-4c08-9efc-808dbafb06ff", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-routing-request-id": "WESTUS:20230214T020031Z:bf5bf7ff-e7d6-4c08-9efc-808dbafb06ff" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2786", + "Content-Length": "2780", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:07 GMT", + "Date": "Tue, 14 Feb 2023 02:00:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22f0ced6-777f-4645-88ad-1e08b99ba6a0", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-routing-request-id": "WESTUS2:20230131T063907Z:22f0ced6-777f-4645-88ad-1e08b99ba6a0" + "x-ms-correlation-request-id": "f9584aa0-07a2-4f56-92e4-bf6a86f99559", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-routing-request-id": "WESTUS:20230214T020032Z:f9584aa0-07a2-4f56-92e4-bf6a86f99559" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:39:05.4332929Z", - "duration": "PT28.9673099S", - "trackingId": "cb14efe4-104f-4577-a11e-6b8343962a30", + "timestamp": "2023-02-14T02:00:28.7068667Z", + "duration": "PT31.7982767S", + "trackingId": "c575fcca-6c01-446f-95cb-cfc7f0a9ff16", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0adefe6a-c613-4d67-9f01-56baae624855", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-routing-request-id": "WESTUS2:20230131T063911Z:0adefe6a-c613-4d67-9f01-56baae624855" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "3250", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0dcbe7d-3e09-4c66-ad35-641ff506b917", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-routing-request-id": "WESTUS2:20230131T063913Z:c0dcbe7d-3e09-4c66-ad35-641ff506b917" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:39:10.9493499Z", - "duration": "PT34.4833669S", - "trackingId": "5043488f-2f26-47a3-9fb9-27b361b92621", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etesttkeyvault195e233b" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttinsights7bb983b1" } } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/08585264598423055223", - "operationId": "08585264598423055223", - "properties": { - "provisioningOperation": "EvaluateDeploymentOutput", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:39:11.1013114Z", - "duration": "PT34.6353284S", - "trackingId": "c5128568-b5ec-4e0f-b932-81667d605672", - "statusCode": "OK" - } } ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operationStatuses/08585264598423055223?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operationStatuses/08585252669139929110?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3697,64 +2730,64 @@ "Content-Encoding": "gzip", "Content-Length": "22", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:15 GMT", + "Date": "Tue, 14 Feb 2023 02:00:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21b14d0d-913a-449c-9db1-c54eb7c77155", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-routing-request-id": "WESTUS2:20230131T063916Z:21b14d0d-913a-449c-9db1-c54eb7c77155" + "x-ms-correlation-request-id": "03046a3e-6909-4eb7-b2f1-818ced183dec", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-routing-request-id": "WESTUS:20230214T020036Z:03046a3e-6909-4eb7-b2f1-818ced183dec" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "8491", + "Content-Length": "8560", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:15 GMT", + "Date": "Tue, 14 Feb 2023 02:00:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e6ef071-e3d4-4f92-9245-d5155604da78", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-routing-request-id": "WESTUS2:20230131T063916Z:7e6ef071-e3d4-4f92-9245-d5155604da78" + "x-ms-correlation-request-id": "72ab6353-9ec5-432b-86a4-437353c8afe2", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-routing-request-id": "WESTUS:20230214T020036Z:72ab6353-9ec5-432b-86a4-437353c8afe2" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603", - "name": "e2etest_test_797279886032-5286603", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818", + "name": "e2etest_test_786182016259-500818", "type": "Microsoft.Resources/deployments", "properties": { - "templateHash": "12037445159745527008", + "templateHash": "4984303229931942319", "parameters": { "workspaceName": { "type": "String", - "value": "e2etest_test_797279886032" + "value": "e2etest_test_786182016259" }, "description": { "type": "String", - "value": "e2etest_test_797279886032 description" + "value": "e2etest_test_786182016259 description" }, "friendlyName": { "type": "String", - "value": "e2etest_test_797279886032 display name" + "value": "e2etest_test_786182016259 display name" }, "location": { "type": "String", @@ -3770,7 +2803,7 @@ }, "storageAccountName": { "type": "String", - "value": "e2etesttstoragea0da1e5b0" + "value": "e2etesttstorage50cc96bf3" }, "storageAccountType": { "type": "String", @@ -3794,7 +2827,7 @@ }, "keyVaultName": { "type": "String", - "value": "e2etesttkeyvaultd93792c0" + "value": "e2etesttkeyvault195e233b" }, "keyVaultBehindVNet": { "type": "String", @@ -3814,7 +2847,7 @@ }, "applicationInsightsName": { "type": "String", - "value": "e2etesttinsights521666cf" + "value": "e2etesttinsights7bb983b1" }, "applicationInsightsResourceGroupName": { "type": "String", @@ -3905,7 +2938,7 @@ "tagValues": { "type": "Object", "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "privateEndpointName": { @@ -3953,13 +2986,19 @@ "primaryUserAssignedIdentity": { "type": "String", "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "Disabled" + } } }, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:39:11.119733Z", - "duration": "PT1M46.5050913S", - "correlationId": "07327898-3b16-44a6-84fd-67afbd0e9d01", + "timestamp": "2023-02-14T02:00:34.0951702Z", + "duration": "PT1M1.1335525S", + "correlationId": "70a27ebd-3348-4a88-9665-73ea2a2843c4", "providers": [ { "namespace": "Microsoft.Storage", @@ -4027,9 +3066,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" }, { "dependsOn": [ @@ -4039,9 +3078,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" }, { "dependsOn": [ @@ -4058,19 +3097,19 @@ { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "resourceName": "e2etesttstorage50cc96bf3" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "resourceName": "e2etesttkeyvault195e233b" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "resourceName": "e2etesttinsights7bb983b1" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", @@ -4078,16 +3117,16 @@ "resourceName": "name" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etest_test_786182016259" }, { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etest_test_786182016259" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", @@ -4102,126 +3141,126 @@ ], "outputResources": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3" } ] } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "3250", + "Content-Length": "3243", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:18 GMT", + "Date": "Tue, 14 Feb 2023 02:00:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8793ef60-0792-4679-9789-7b9ed756c1c1", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-routing-request-id": "WESTUS2:20230131T063918Z:8793ef60-0792-4679-9789-7b9ed756c1c1" + "x-ms-correlation-request-id": "56c41bb4-57d0-480d-b0c3-2b534fc6f228", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-routing-request-id": "WESTUS:20230214T020037Z:56c41bb4-57d0-480d-b0c3-2b534fc6f228" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:39:10.9493499Z", - "duration": "PT34.4833669S", - "trackingId": "5043488f-2f26-47a3-9fb9-27b361b92621", + "timestamp": "2023-02-14T02:00:33.8883786Z", + "duration": "PT36.9797886S", + "trackingId": "a2abb810-598f-47da-b1dc-a07809fa9c9e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault195e233b" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/08585264598423055223", - "operationId": "08585264598423055223", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/08585252669139929110", + "operationId": "08585252669139929110", "properties": { "provisioningOperation": "EvaluateDeploymentOutput", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:39:11.1013114Z", - "duration": "PT34.6353284S", - "trackingId": "c5128568-b5ec-4e0f-b932-81667d605672", + "timestamp": "2023-02-14T02:00:34.0707462Z", + "duration": "PT37.1621562S", + "trackingId": "3a7df1cd-a2ec-4923-b7da-4f888e861ef8", "statusCode": "OK" } } @@ -4229,110 +3268,110 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_797279886032-5286603/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_786182016259-500818/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "3250", + "Content-Length": "3243", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:18 GMT", + "Date": "Tue, 14 Feb 2023 02:00:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4447fdf5-2aec-4bc4-9ce2-f71dc1fdfca8", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-routing-request-id": "WESTUS2:20230131T063918Z:4447fdf5-2aec-4bc4-9ce2-f71dc1fdfca8" + "x-ms-correlation-request-id": "86ad0319-59f6-4ef9-8421-5707b62717ce", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-routing-request-id": "WESTUS:20230214T020038Z:86ad0319-59f6-4ef9-8421-5707b62717ce" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DC6A2B52AB7298AB", - "operationId": "DC6A2B52AB7298AB", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/4FBE08E5C6351D6A", + "operationId": "4FBE08E5C6351D6A", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:39:10.9493499Z", - "duration": "PT34.4833669S", - "trackingId": "5043488f-2f26-47a3-9fb9-27b361b92621", + "timestamp": "2023-02-14T02:00:33.8883786Z", + "duration": "PT36.9797886S", + "trackingId": "a2abb810-598f-47da-b1dc-a07809fa9c9e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_797279886032" + "resourceName": "e2etest_test_786182016259" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/739911AFD07DDEEF", - "operationId": "739911AFD07DDEEF", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/8EB137E14666C100", + "operationId": "8EB137E14666C100", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:37.827671Z", - "duration": "PT12.3772003S", - "trackingId": "267c70c9-c4aa-4c6b-9f6c-abb3f699f155", + "timestamp": "2023-02-14T01:59:56.8370248Z", + "duration": "PT23.4686766S", + "trackingId": "ed31954f-d9f5-44ba-b022-1fef5650837c", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights521666cf", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights521666cf" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage50cc96bf3" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/5DBE6A1DF16C676C", - "operationId": "5DBE6A1DF16C676C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/D3BE8104AAF2CC6F", + "operationId": "D3BE8104AAF2CC6F", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:37:51.1085251Z", - "duration": "PT25.5847395S", - "trackingId": "0afc60e5-cc2e-416d-8764-d1f5a790527d", + "timestamp": "2023-02-14T01:59:52.2144046Z", + "duration": "PT18.7803988S", + "trackingId": "7a0c199a-af20-40d3-83e3-6c88dfdaddf6", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea0da1e5b0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault195e233b", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault195e233b" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/DA21627E4CA659F9", - "operationId": "DA21627E4CA659F9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/5F8AD9C3E8462591", + "operationId": "5F8AD9C3E8462591", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:38:36.2722207Z", - "duration": "PT1M10.7484351S", - "trackingId": "0af17a15-ad74-46a9-a16a-e2e046994549", + "timestamp": "2023-02-14T01:59:36.7664179Z", + "duration": "PT3.3980697S", + "trackingId": "7ac086fe-201d-4ec2-bb9d-6994cdcc732a", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvaultd93792c0", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvaultd93792c0" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights7bb983b1", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights7bb983b1" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_797279886032-5286603/operations/08585264598423055223", - "operationId": "08585264598423055223", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_786182016259-500818/operations/08585252669139929110", + "operationId": "08585252669139929110", "properties": { "provisioningOperation": "EvaluateDeploymentOutput", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:39:11.1013114Z", - "duration": "PT34.6353284S", - "trackingId": "c5128568-b5ec-4e0f-b932-81667d605672", + "timestamp": "2023-02-14T02:00:34.0707462Z", + "duration": "PT37.1621562S", + "trackingId": "3a7df1cd-a2ec-4923-b7da-4f888e861ef8", "statusCode": "OK" } } @@ -4340,13 +3379,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4354,11 +3393,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:18 GMT", + "Date": "Tue, 14 Feb 2023 02:00:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8b1a8f175c7d4c1d5124f714a30a2034-e1aa6042af053d84-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-71face1c44537fc34be629be6ae3d69a-67aded1994852f66-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4367,54 +3406,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdfd4ace-310a-43b3-aa19-236d6f5a8e40", - "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-correlation-request-id": "1158ba4e-e002-4f43-b2c2-3b94d5263d6e", + "x-ms-ratelimit-remaining-subscription-reads": "11914", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063919Z:bdfd4ace-310a-43b3-aa19-236d6f5a8e40", - "x-request-time": "0.026" + "x-ms-routing-request-id": "WESTUS:20230214T020038Z:1158ba4e-e002-4f43-b2c2-3b94d5263d6e", + "x-request-time": "0.031" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "name": "e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "name": "e2etest_test_786182016259", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_797279886032 display name", - "description": "e2etest_test_797279886032 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvaultd93792c0", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights521666cf", + "friendlyName": "e2etest_test_786182016259 display name", + "description": "e2etest_test_786182016259 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault195e233b", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights7bb983b1", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:59:57.9073873Z", "notebookInfo": { - "resourceId": "bc0dbe0d101e4809aaca138b32ab0b92", - "fqdn": "ml-e2etesttest-eastus2euap-3d10da1f-6065-48c5-bd8a-511050e9be84.eastus2euap.notebooks.azure.net", + "resourceId": "92be8795a0764775866f8000d885dba4", + "fqdn": "ml-e2etesttest-eastus2euap-24bc8eda-6b6a-42dd-881f-af08f2290f9b.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "3d10da1f-6065-48c5-bd8a-511050e9be84", + "workspaceId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "8b37de03-26b5-4f44-9677-8eac88a16a53", + "principalId": "3ddbb596-2326-4697-9f7d-cf0f230a1da9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4423,11 +3467,11 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:38:37.7058286Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:59:57.9073873Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:38:37.7058286Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:59:57.9073873Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } @@ -4439,7 +3483,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4447,27 +3491,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:22 GMT", + "Date": "Tue, 14 Feb 2023 02:00:39 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-correlation-request-id": "208592f0-df47-43d1-8cab-c7de58fd8911", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-routing-request-id": "WESTUS2:20230131T063922Z:208592f0-df47-43d1-8cab-c7de58fd8911" + "x-ms-correlation-request-id": "a62ff7c4-8cbb-4e51-8c61-5a6a4accb0bb", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-routing-request-id": "WESTUS:20230214T020039Z:a62ff7c4-8cbb-4e51-8c61-5a6a4accb0bb" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe", "name": "uai-mhe", "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus2euap", + "location": "eastus", "tags": {}, "properties": { "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" } } }, @@ -4478,7 +3522,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-azure-mgmt-msi/6.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4486,38 +3530,38 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:22 GMT", + "Date": "Tue, 14 Feb 2023 02:00:39 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-correlation-request-id": "22ccf9ae-ca43-44ea-8e0a-dce64cb90eb7", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-routing-request-id": "WESTUS2:20230131T063922Z:22ccf9ae-ca43-44ea-8e0a-dce64cb90eb7" + "x-ms-correlation-request-id": "1972c3c4-139a-4f6c-9f24-846222203eff", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-routing-request-id": "WESTUS:20230214T020040Z:1972c3c4-139a-4f6c-9f24-846222203eff" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2", "name": "uai-mhe2", "type": "Microsoft.ManagedIdentity/userAssignedIdentities", - "location": "eastus2euap", + "location": "eastus", "tags": {}, "properties": { "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4525,11 +3569,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:22 GMT", + "Date": "Tue, 14 Feb 2023 02:00:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9d46f8afe87fa7848aa532cb4ccac105-9cddcd680f80e37a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f65f988473229b92af3d87ced4411275-520f0f9ca6356ac3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4538,54 +3582,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b19ca55-58dc-4eaf-b234-16258af482b1", - "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-correlation-request-id": "32b25782-52bc-4a4a-b21b-4118cfd92656", + "x-ms-ratelimit-remaining-subscription-reads": "11911", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063923Z:7b19ca55-58dc-4eaf-b234-16258af482b1", - "x-request-time": "0.027" + "x-ms-routing-request-id": "WESTUS:20230214T020040Z:32b25782-52bc-4a4a-b21b-4118cfd92656", + "x-request-time": "0.029" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "name": "e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "name": "e2etest_test_786182016259", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_797279886032 display name", - "description": "e2etest_test_797279886032 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvaultd93792c0", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights521666cf", + "friendlyName": "e2etest_test_786182016259 display name", + "description": "e2etest_test_786182016259 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault195e233b", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights7bb983b1", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:59:57.9073873Z", "notebookInfo": { - "resourceId": "bc0dbe0d101e4809aaca138b32ab0b92", - "fqdn": "ml-e2etesttest-eastus2euap-3d10da1f-6065-48c5-bd8a-511050e9be84.eastus2euap.notebooks.azure.net", + "resourceId": "92be8795a0764775866f8000d885dba4", + "fqdn": "ml-e2etesttest-eastus2euap-24bc8eda-6b6a-42dd-881f-af08f2290f9b.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "3d10da1f-6065-48c5-bd8a-511050e9be84", + "workspaceId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "8b37de03-26b5-4f44-9677-8eac88a16a53", + "principalId": "3ddbb596-2326-4697-9f7d-cf0f230a1da9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4594,17 +3643,17 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:38:37.7058286Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:59:57.9073873Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:38:37.7058286Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:59:57.9073873Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259?api-version=2022-12-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", @@ -4612,7 +3661,7 @@ "Connection": "keep-alive", "Content-Length": "382", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tags": {}, @@ -4626,33 +3675,33 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/Ph96Og-npHWp8zRTvBIWLMR6RCo79Kj9FQ9eBTTvLJI?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/gaZCM_1n9REGDmTXv-3suxQCyde8jM8bEjKNj-_MNJo?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:39:23 GMT", + "Date": "Tue, 14 Feb 2023 02:00:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/Ph96Og-npHWp8zRTvBIWLMR6RCo79Kj9FQ9eBTTvLJI?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/gaZCM_1n9REGDmTXv-3suxQCyde8jM8bEjKNj-_MNJo?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3533ca65-e70f-47ac-8fe2-47e8ff93bab6", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "fad544d3-ca1a-4bdb-8ded-f16b454c7c85", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063924Z:3533ca65-e70f-47ac-8fe2-47e8ff93bab6", - "x-request-time": "0.146" + "x-ms-routing-request-id": "WESTUS:20230214T020041Z:fad544d3-ca1a-4bdb-8ded-f16b454c7c85", + "x-request-time": "0.177" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/Ph96Og-npHWp8zRTvBIWLMR6RCo79Kj9FQ9eBTTvLJI?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/gaZCM_1n9REGDmTXv-3suxQCyde8jM8bEjKNj-_MNJo?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4660,34 +3709,70 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:23 GMT", + "Date": "Tue, 14 Feb 2023 02:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5a0434db14a05186a273699c6eb0f031-ea024c4a4c83dbf1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-04efa32b16ede08e80e6af596cccdb20-981d21e3ac12f3e5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f31e9bd1-01f0-458c-8801-1bf0582ff8cb", - "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-correlation-request-id": "488fefcd-a7e5-469c-8efc-c5bf628ff1fb", + "x-ms-ratelimit-remaining-subscription-reads": "11910", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063924Z:f31e9bd1-01f0-458c-8801-1bf0582ff8cb", - "x-request-time": "0.020" + "x-ms-routing-request-id": "WESTUS:20230214T020041Z:488fefcd-a7e5-469c-8efc-c5bf628ff1fb", + "x-request-time": "0.029" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/Ph96Og-npHWp8zRTvBIWLMR6RCo79Kj9FQ9eBTTvLJI?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/4a229f80-49b4-403b-916a-fac78a6f3d52?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:00:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-9302afa276c99fa1ecf11f5f12deaaf9-0e170592e2488e24-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2euap-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ea462a0c-2039-4c46-875b-8d9747e10fd0", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020056Z:ea462a0c-2039-4c46-875b-8d9747e10fd0", + "x-request-time": "0.020" + }, + "ResponseBody": { + "status": "Succeeded", + "percentComplete": 100.0 + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/gaZCM_1n9REGDmTXv-3suxQCyde8jM8bEjKNj-_MNJo?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4695,20 +3780,20 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:53 GMT", + "Date": "Tue, 14 Feb 2023 02:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3ea8e0dd987c4ae35fa15731cf4ab0bf-f67c011f1c5d11a5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7a4042d9277bd331c2256d1cbe2b85d5-b1efac42861e9427-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d5c6f85-f450-455f-8756-4450806b52c4", - "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-correlation-request-id": "46314244-1a66-419d-ae36-825e20d724df", + "x-ms-ratelimit-remaining-subscription-reads": "11908", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063954Z:3d5c6f85-f450-455f-8756-4450806b52c4", + "x-ms-routing-request-id": "WESTUS:20230214T020111Z:46314244-1a66-419d-ae36-825e20d724df", "x-request-time": "0.024" }, "ResponseBody": { @@ -4717,13 +3802,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4731,11 +3816,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:53 GMT", + "Date": "Tue, 14 Feb 2023 02:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dfde8628b79d40f4761069b44be68f82-231100acf1ac8d75-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5208a6f72bfd2022ddb858f7a14e748e-4fe29a998013d70a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4744,61 +3829,66 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a7ef4e3-13ea-4d1c-90e0-af2dc0312ac1", - "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-correlation-request-id": "e24b248b-a41e-489b-a8df-c63d447ea368", + "x-ms-ratelimit-remaining-subscription-reads": "11907", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063954Z:6a7ef4e3-13ea-4d1c-90e0-af2dc0312ac1", - "x-request-time": "0.024" + "x-ms-routing-request-id": "WESTUS:20230214T020112Z:e24b248b-a41e-489b-a8df-c63d447ea368", + "x-request-time": "0.029" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "name": "e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "name": "e2etest_test_786182016259", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": {}, "etag": null, "properties": { - "friendlyName": "e2etest_test_797279886032 display name", - "description": "e2etest_test_797279886032 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvaultd93792c0", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights521666cf", + "friendlyName": "e2etest_test_786182016259 display name", + "description": "e2etest_test_786182016259 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault195e233b", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights7bb983b1", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:59:57.9073873Z", "notebookInfo": { - "resourceId": "bc0dbe0d101e4809aaca138b32ab0b92", - "fqdn": "ml-e2etesttest-eastus2euap-3d10da1f-6065-48c5-bd8a-511050e9be84.eastus2euap.notebooks.azure.net", + "resourceId": "92be8795a0764775866f8000d885dba4", + "fqdn": "ml-e2etesttest-eastus2euap-24bc8eda-6b6a-42dd-881f-af08f2290f9b.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "3d10da1f-6065-48c5-bd8a-511050e9be84", + "workspaceId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned,UserAssigned", - "principalId": "8b37de03-26b5-4f44-9677-8eac88a16a53", + "principalId": "3ddbb596-2326-4697-9f7d-cf0f230a1da9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "userAssignedIdentities": { "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe": { - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" }, "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2": { - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, @@ -4808,23 +3898,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:38:37.7058286Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:59:57.9073873Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:39:23.7899991Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T02:00:41.2615749Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4832,11 +3922,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:39:54 GMT", + "Date": "Tue, 14 Feb 2023 02:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3b9051bdf39bb2c921b9ef7576541dc6-e8755f8f87148cde-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-018c9a70c276db491a0571ce31bae810-83b63ece83e5dde9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4845,61 +3935,66 @@ ], "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c685466c-d6a7-4aef-a101-29c676b8ad2d", - "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-correlation-request-id": "1f5fb7b3-1131-421c-a373-e2e4f0c8dee3", + "x-ms-ratelimit-remaining-subscription-reads": "11906", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063954Z:c685466c-d6a7-4aef-a101-29c676b8ad2d", + "x-ms-routing-request-id": "WESTUS:20230214T020112Z:1f5fb7b3-1131-421c-a373-e2e4f0c8dee3", "x-request-time": "0.032" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "name": "e2etest_test_797279886032", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "name": "e2etest_test_786182016259", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": {}, "etag": null, "properties": { - "friendlyName": "e2etest_test_797279886032 display name", - "description": "e2etest_test_797279886032 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvaultd93792c0", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights521666cf", + "friendlyName": "e2etest_test_786182016259 display name", + "description": "e2etest_test_786182016259 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault195e233b", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights7bb983b1", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:59:57.9073873Z", "notebookInfo": { - "resourceId": "bc0dbe0d101e4809aaca138b32ab0b92", - "fqdn": "ml-e2etesttest-eastus2euap-3d10da1f-6065-48c5-bd8a-511050e9be84.eastus2euap.notebooks.azure.net", + "resourceId": "92be8795a0764775866f8000d885dba4", + "fqdn": "ml-e2etesttest-eastus2euap-24bc8eda-6b6a-42dd-881f-af08f2290f9b.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "3d10da1f-6065-48c5-bd8a-511050e9be84", + "workspaceId": "24bc8eda-6b6a-42dd-881f-af08f2290f9b", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032", - "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259", + "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned,UserAssigned", - "principalId": "8b37de03-26b5-4f44-9677-8eac88a16a53", + "principalId": "3ddbb596-2326-4697-9f7d-cf0f230a1da9", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "userAssignedIdentities": { "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe": { - "principalId": "0a390e3a-8a74-4a63-b4b1-358a6da87aac", - "clientId": "d8e8dc97-154f-4c2c-9ec0-de8568032d3e" + "principalId": "93029813-8a07-45a2-a347-6486be4f2240", + "clientId": "335eea06-5b20-4224-98c6-95bf072558db" }, "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ManagedIdentity/userAssignedIdentities/uai-mhe2": { - "principalId": "35341706-b4e3-4b8e-ab6f-b818a9cebaec", - "clientId": "b8233824-a37a-448e-9418-53538acd0c87" + "principalId": "418a373d-26e5-4f86-b861-6b248a35d953", + "clientId": "e37a7014-b884-4869-8a52-41134b368c26" } } }, @@ -4909,24 +4004,24 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:38:37.7058286Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:59:57.9073873Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:39:23.7899991Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T02:00:41.2615749Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights521666cf?api-version=2015-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights7bb983b1?api-version=2015-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4934,29 +4029,29 @@ "Access-Control-Expose-Headers": "Request-Context", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:40:00 GMT", + "Date": "Tue, 14 Feb 2023 02:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0970c4de-c26f-4e60-9826-0f9c64b76b04", - "x-ms-ratelimit-remaining-subscription-deletes": "14990", - "x-ms-routing-request-id": "WESTUS2:20230131T064001Z:0970c4de-c26f-4e60-9826-0f9c64b76b04", + "x-ms-correlation-request-id": "06de7510-22a2-46e9-9d2c-4b0631ea13ad", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "WESTUS:20230214T020117Z:06de7510-22a2-46e9-9d2c-4b0631ea13ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea0da1e5b0?api-version=2019-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage50cc96bf3?api-version=2019-06-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4964,85 +4059,85 @@ "Cache-Control": "no-cache", "Content-Length": "0", "Content-Type": "text/plain; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:40:07 GMT", + "Date": "Tue, 14 Feb 2023 02:01:21 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", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0896294e-b9c1-4a31-88b4-977010f85a51", - "x-ms-ratelimit-remaining-subscription-deletes": "14989", - "x-ms-routing-request-id": "WESTUS2:20230131T064007Z:0896294e-b9c1-4a31-88b4-977010f85a51" + "x-ms-correlation-request-id": "6071fbe9-97ab-468f-beb2-462f89baa946", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-routing-request-id": "WESTUS:20230214T020121Z:6071fbe9-97ab-468f-beb2-462f89baa946" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvaultd93792c0?api-version=2019-09-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault195e233b?api-version=2019-09-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:40:12 GMT", + "Date": "Tue, 14 Feb 2023 02:01:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-AspNet-Version": "4.0.30319", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e08f48ae-a60d-4387-985b-d92a93268db3", - "x-ms-keyvault-service-version": "1.5.655.1", - "x-ms-ratelimit-remaining-subscription-deletes": "14988", - "x-ms-routing-request-id": "WESTUS2:20230131T064013Z:e08f48ae-a60d-4387-985b-d92a93268db3" + "x-ms-correlation-request-id": "a72e1da4-104b-4bdc-9090-e09a7dcd6d82", + "x-ms-keyvault-service-version": "1.5.666.2", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-routing-request-id": "WESTUS:20230214T020125Z:a72e1da4-104b-4bdc-9090-e09a7dcd6d82" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_797279886032?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_786182016259?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/a3110070-6933-4679-851a-6a05ea3084fb?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/3a782421-0dbe-4ade-a3c8-ece5115ecc0f?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:40:13 GMT", + "Date": "Tue, 14 Feb 2023 02:01:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/a3110070-6933-4679-851a-6a05ea3084fb?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/3a782421-0dbe-4ade-a3c8-ece5115ecc0f?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2euap-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0375d1ca-d385-4bd4-bffa-be89fdf67548", - "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-correlation-request-id": "7413a2a4-e1fe-4de8-940a-839381a58a26", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T064013Z:0375d1ca-d385-4bd4-bffa-be89fdf67548", - "x-request-time": "0.092" + "x-ms-routing-request-id": "WESTUS:20230214T020125Z:7413a2a4-e1fe-4de8-940a-839381a58a26", + "x-request-time": "0.235" }, "ResponseBody": null } ], "Variables": { - "deployment_name": "e2etest_test_797279886032-5286603", - "insights_name": "e2etesttinsights521666cf", - "keyvault_name": "e2etesttkeyvaultd93792c0", - "storage_name": "e2etesttstoragea0da1e5b0", - "wps_name": "test_797279886032" + "deployment_name": "e2etest_test_786182016259-500818", + "insights_name": "e2etesttinsights7bb983b1", + "keyvault_name": "e2etesttkeyvault195e233b", + "storage_name": "e2etesttstorage50cc96bf3", + "wps_name": "test_786182016259" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_create_update_and_delete.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_create_update_and_delete.json index defcaf784bf21..71b11cb0a54ae 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_create_update_and_delete.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_create_update_and_delete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -15,19 +15,19 @@ "Cache-Control": "no-cache", "Content-Length": "247", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:08 GMT", + "Date": "Tue, 14 Feb 2023 01:53:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c7fd267-8979-4e6a-b0fd-0dafab034106", + "x-ms-correlation-request-id": "541cc4c4-eb08-47d2-ab48-fc3a5a9018b5", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTUS2:20230131T063009Z:6c7fd267-8979-4e6a-b0fd-0dafab034106" + "x-ms-routing-request-id": "WESTUS:20230214T015400Z:541cc4c4-eb08-47d2-ab48-fc3a5a9018b5" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } }, @@ -38,7 +38,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -47,15 +47,15 @@ "Content-Encoding": "gzip", "Content-Length": "272", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:10 GMT", + "Date": "Tue, 14 Feb 2023 01:54:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaf6cb7c-78a6-464d-a4cc-74222bbef455", + "x-ms-correlation-request-id": "362c703f-c665-41e5-9590-eac1b497e424", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTUS2:20230131T063011Z:aaf6cb7c-78a6-464d-a4cc-74222bbef455" + "x-ms-routing-request-id": "WESTUS:20230214T015401Z:362c703f-c665-41e5-9590-eac1b497e424" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus", @@ -74,7 +74,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -83,15 +83,15 @@ "Content-Encoding": "gzip", "Content-Length": "322", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:13 GMT", + "Date": "Tue, 14 Feb 2023 01:54:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e283f109-fcb4-4d4a-8c80-9916c700dfac", + "x-ms-correlation-request-id": "ed8e5f04-0709-41e3-9105-74ff4a932533", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTUS2:20230131T063013Z:e283f109-fcb4-4d4a-8c80-9916c700dfac" + "x-ms-routing-request-id": "WESTUS:20230214T015402Z:ed8e5f04-0709-41e3-9105-74ff4a932533" }, "ResponseBody": { "value": [ @@ -105,15 +105,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285?api-version=2020-06-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "19279", + "Content-Length": "19620", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -505,6 +505,15 @@ "metadata": { "description": "ARM identifier of primary user assigned managed identity, in case multiple ones are specified. Also the default managed identity for clusterless compute." } + }, + "managedNetwork": { + "type": "object", + "defaultValue": { + "isolationMode": "Disabled" + }, + "metadata": { + "description": "Managed network settings to be used for the workspace. If not specified, isolation mode Disabled is the default" + } } }, "variables": { @@ -663,7 +672,7 @@ { "condition": "[variables(\u0027enablePE\u0027)]", "type": "Microsoft.MachineLearningServices/workspaces", - "apiVersion": "2022-01-01-preview", + "apiVersion": "2022-12-01-preview", "tags": "[parameters(\u0027tagValues\u0027)]", "name": "[parameters(\u0027workspaceName\u0027)]", "location": "[parameters(\u0027location\u0027)]", @@ -696,7 +705,8 @@ "storageAccountArmId": "[parameters(\u0027encryption_storage_resourceid\u0027)]", "SearchAccountArmId": "[parameters(\u0027encryption_search_resourceid\u0027)]" }, - "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]" + "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]", + "managedNetwork": "[parameters(\u0027managedNetwork\u0027)]" } }, { @@ -740,27 +750,27 @@ "value": "eastus2euap" }, "workspaceName": { - "value": "e2etest_test_119502617351" + "value": "e2etest_test_855339767631" }, "resourceGroupName": { "value": "00000" }, "description": { - "value": "e2etest_test_119502617351 description" + "value": "e2etest_test_855339767631 description" }, "friendlyName": { - "value": "e2etest_test_119502617351 display name" + "value": "e2etest_test_855339767631 display name" }, "tagValues": { "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "keyVaultOption": { "value": "new" }, "keyVaultName": { - "value": "e2etesttkeyvault8b9fd471" + "value": "e2etesttkeyvault3e2a4ce5" }, "keyVaultResourceGroupName": { "value": "00000" @@ -769,7 +779,7 @@ "value": "new" }, "storageAccountName": { - "value": "e2etesttstoragea482cf16d" + "value": "e2etesttstorage7a156a630" }, "storageAccountResourceGroupName": { "value": "00000" @@ -778,7 +788,7 @@ "value": "new" }, "applicationInsightsName": { - "value": "e2etesttinsights03491969" + "value": "e2etesttinsights667c475d" }, "applicationInsightsResourceGroupName": { "value": "00000" @@ -856,6 +866,11 @@ }, "primaryUserAssignedIdentity": { "value": "" + }, + "managedNetwork": { + "value": { + "isolationMode": "Disabled" + } } }, "mode": "incremental" @@ -863,37 +878,37 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "Cache-Control": "no-cache", - "Content-Length": "7876", + "Content-Length": "7947", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:19 GMT", + "Date": "Tue, 14 Feb 2023 01:54:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e685d67-67f6-4f1f-b200-1e7e5674fa56", + "x-ms-correlation-request-id": "a608ee4c-ba33-4d72-8887-27beaaee8b51", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTUS2:20230131T063020Z:7e685d67-67f6-4f1f-b200-1e7e5674fa56" + "x-ms-routing-request-id": "WESTUS:20230214T015407Z:a608ee4c-ba33-4d72-8887-27beaaee8b51" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430", - "name": "e2etest_test_119502617351-2374430", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285", + "name": "e2etest_test_855339767631-9567285", "type": "Microsoft.Resources/deployments", "properties": { - "templateHash": "12037445159745527008", + "templateHash": "4984303229931942319", "parameters": { "workspaceName": { "type": "String", - "value": "e2etest_test_119502617351" + "value": "e2etest_test_855339767631" }, "description": { "type": "String", - "value": "e2etest_test_119502617351 description" + "value": "e2etest_test_855339767631 description" }, "friendlyName": { "type": "String", - "value": "e2etest_test_119502617351 display name" + "value": "e2etest_test_855339767631 display name" }, "location": { "type": "String", @@ -909,7 +924,7 @@ }, "storageAccountName": { "type": "String", - "value": "e2etesttstoragea482cf16d" + "value": "e2etesttstorage7a156a630" }, "storageAccountType": { "type": "String", @@ -933,7 +948,7 @@ }, "keyVaultName": { "type": "String", - "value": "e2etesttkeyvault8b9fd471" + "value": "e2etesttkeyvault3e2a4ce5" }, "keyVaultBehindVNet": { "type": "String", @@ -953,7 +968,7 @@ }, "applicationInsightsName": { "type": "String", - "value": "e2etesttinsights03491969" + "value": "e2etesttinsights667c475d" }, "applicationInsightsResourceGroupName": { "type": "String", @@ -1044,7 +1059,7 @@ "tagValues": { "type": "Object", "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "privateEndpointName": { @@ -1092,13 +1107,19 @@ "primaryUserAssignedIdentity": { "type": "String", "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "Disabled" + } } }, "mode": "Incremental", "provisioningState": "Accepted", - "timestamp": "2023-01-31T06:30:19.6168436Z", - "duration": "PT0.0001084S", - "correlationId": "7e685d67-67f6-4f1f-b200-1e7e5674fa56", + "timestamp": "2023-02-14T01:54:06.7891516Z", + "duration": "PT0.0004062S", + "correlationId": "a608ee4c-ba33-4d72-8887-27beaaee8b51", "providers": [ { "namespace": "Microsoft.Storage", @@ -1166,9 +1187,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "resourceName": "e2etesttstorage7a156a630" }, { "dependsOn": [ @@ -1178,9 +1199,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" }, { "dependsOn": [ @@ -1197,19 +1218,19 @@ { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "resourceName": "e2etesttstorage7a156a630" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "resourceName": "e2etesttinsights667c475d" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", @@ -1217,16 +1238,16 @@ "resourceName": "name" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" }, { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", @@ -1243,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1258,234 +1279,96 @@ "Content-Encoding": "gzip", "Content-Length": "21", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:19 GMT", + "Date": "Tue, 14 Feb 2023 01:54:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1123f1a9-7130-4b34-b043-9bcbef7903d3", + "x-ms-correlation-request-id": "78848e5e-0996-4667-91b1-7ecf83f5315b", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTUS2:20230131T063020Z:1123f1a9-7130-4b34-b043-9bcbef7903d3" + "x-ms-routing-request-id": "WESTUS:20230214T015407Z:78848e5e-0996-4667-91b1-7ecf83f5315b" }, "ResponseBody": { "status": "Accepted" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "12", + "Content-Length": "2068", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:24 GMT", + "Date": "Tue, 14 Feb 2023 01:54:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7b89d3e-856d-4c4b-84db-964eabc1f374", + "x-ms-correlation-request-id": "45a1f715-30fc-406c-bf16-a1b5a64d4a67", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTUS2:20230131T063025Z:e7b89d3e-856d-4c4b-84db-964eabc1f374" - }, - "ResponseBody": { - "value": [] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e3d5550-64cf-4986-935e-6f2a072d889f", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTUS2:20230131T063025Z:2e3d5550-64cf-4986-935e-6f2a072d889f" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "707", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c689c87-13a1-47b9-90da-b69b97e49e35", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTUS2:20230131T063030Z:1c689c87-13a1-47b9-90da-b69b97e49e35" + "x-ms-routing-request-id": "WESTUS:20230214T015412Z:45a1f715-30fc-406c-bf16-a1b5a64d4a67" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:28.856351Z", - "duration": "PT7.6043647S", - "trackingId": "bbf09bc7-7b82-4de6-bc2b-6b3837d57881", + "timestamp": "2023-02-14T01:54:11.3870275Z", + "duration": "PT3.8526543S", + "trackingId": "5044d3e3-e58a-4565-8968-1145d08e28e0", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cfc00f9-798d-4305-be8f-5409984d2ef6", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTUS2:20230131T063030Z:1cfc00f9-798d-4305-be8f-5409984d2ef6" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2067", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9846658e-eb66-4d69-aaf9-4aeecf776bfa", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTUS2:20230131T063036Z:9846658e-eb66-4d69-aaf9-4aeecf776bfa" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:30.8719756Z", - "duration": "PT9.7399974S", - "trackingId": "37a26c98-9a53-4233-b872-0ff0fa430a41", + "timestamp": "2023-02-14T01:54:10.3962738Z", + "duration": "PT2.8067622S", + "trackingId": "39c45a86-78a2-4599-add2-f3b991ca07eb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:28.856351Z", - "duration": "PT7.6043647S", - "trackingId": "bbf09bc7-7b82-4de6-bc2b-6b3837d57881", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -1493,13 +1376,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1508,96 +1391,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:35 GMT", + "Date": "Tue, 14 Feb 2023 01:54:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6097f0c-df31-4662-b1e8-d3fd3331afd0", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTUS2:20230131T063036Z:d6097f0c-df31-4662-b1e8-d3fd3331afd0" + "x-ms-correlation-request-id": "dc448b81-9dec-4942-b82d-a98d605f423c", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "WESTUS:20230214T015412Z:dc448b81-9dec-4942-b82d-a98d605f423c" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2067", + "Content-Length": "2068", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:41 GMT", + "Date": "Tue, 14 Feb 2023 01:54:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42c645ac-ad63-4b7c-99ce-29ed5f0bb721", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTUS2:20230131T063041Z:42c645ac-ad63-4b7c-99ce-29ed5f0bb721" + "x-ms-correlation-request-id": "4a9f6866-e4e8-4818-8f90-225fca0dbfa4", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "WESTUS:20230214T015417Z:4a9f6866-e4e8-4818-8f90-225fca0dbfa4" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:54:11.3870275Z", + "duration": "PT3.8526543S", + "trackingId": "5044d3e3-e58a-4565-8968-1145d08e28e0", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:30.8719756Z", - "duration": "PT9.7399974S", - "trackingId": "37a26c98-9a53-4233-b872-0ff0fa430a41", + "timestamp": "2023-02-14T01:54:10.3962738Z", + "duration": "PT2.8067622S", + "trackingId": "39c45a86-78a2-4599-add2-f3b991ca07eb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:28.856351Z", - "duration": "PT7.6043647S", - "trackingId": "bbf09bc7-7b82-4de6-bc2b-6b3837d57881", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -1605,13 +1488,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1620,28 +1503,28 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:40 GMT", + "Date": "Tue, 14 Feb 2023 01:54:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "893521ce-7f66-4de8-aea3-fa9f21f9314c", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTUS2:20230131T063041Z:893521ce-7f66-4de8-aea3-fa9f21f9314c" + "x-ms-correlation-request-id": "0f9e19f0-a79e-423f-bafa-697c04b453af", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "WESTUS:20230214T015418Z:0f9e19f0-a79e-423f-bafa-697c04b453af" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1650,96 +1533,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:46 GMT", + "Date": "Tue, 14 Feb 2023 01:54:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ed77560-619f-4188-90ab-972cf229383c", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTUS2:20230131T063046Z:0ed77560-619f-4188-90ab-972cf229383c" + "x-ms-correlation-request-id": "598fc801-9809-484a-a88f-cc9aa80201de", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "WESTUS:20230214T015423Z:598fc801-9809-484a-a88f-cc9aa80201de" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2067", + "Content-Length": "2068", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:46 GMT", + "Date": "Tue, 14 Feb 2023 01:54:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7910762-feb9-4698-addb-d91a070f60c3", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTUS2:20230131T063046Z:c7910762-feb9-4698-addb-d91a070f60c3" + "x-ms-correlation-request-id": "7ed2f75e-eddc-40f7-a1f4-37cfd000ee6d", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "WESTUS:20230214T015423Z:7ed2f75e-eddc-40f7-a1f4-37cfd000ee6d" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:54:11.3870275Z", + "duration": "PT3.8526543S", + "trackingId": "5044d3e3-e58a-4565-8968-1145d08e28e0", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:30.8719756Z", - "duration": "PT9.7399974S", - "trackingId": "37a26c98-9a53-4233-b872-0ff0fa430a41", + "timestamp": "2023-02-14T01:54:10.3962738Z", + "duration": "PT2.8067622S", + "trackingId": "39c45a86-78a2-4599-add2-f3b991ca07eb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:28.856351Z", - "duration": "PT7.6043647S", - "trackingId": "bbf09bc7-7b82-4de6-bc2b-6b3837d57881", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -1747,13 +1630,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1762,96 +1645,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:51 GMT", + "Date": "Tue, 14 Feb 2023 01:54:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99ca6e88-3619-4ccb-96b4-5614cf1a6a37", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTUS2:20230131T063051Z:99ca6e88-3619-4ccb-96b4-5614cf1a6a37" + "x-ms-correlation-request-id": "5114a738-e012-4c23-8043-d855e4db4373", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "WESTUS:20230214T015428Z:5114a738-e012-4c23-8043-d855e4db4373" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2070", + "Content-Length": "2071", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:52 GMT", + "Date": "Tue, 14 Feb 2023 01:54:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3533e57d-1333-4a79-a1c3-663a4674e589", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTUS2:20230131T063052Z:3533e57d-1333-4a79-a1c3-663a4674e589" + "x-ms-correlation-request-id": "edc1cc72-b351-4f76-8475-aa3452084aa5", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "WESTUS:20230214T015428Z:edc1cc72-b351-4f76-8475-aa3452084aa5" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", - "statusCode": "OK", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:54:11.3870275Z", + "duration": "PT3.8526543S", + "trackingId": "5044d3e3-e58a-4565-8968-1145d08e28e0", + "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", + "timestamp": "2023-02-14T01:54:25.8272355Z", + "duration": "PT18.2377239S", + "trackingId": "8c24461e-e86c-4a82-bebd-7a4f05d1e0fb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:28.856351Z", - "duration": "PT7.6043647S", - "trackingId": "bbf09bc7-7b82-4de6-bc2b-6b3837d57881", - "statusCode": "Accepted", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", + "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -1859,13 +1742,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1874,96 +1757,96 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:56 GMT", + "Date": "Tue, 14 Feb 2023 01:54:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f6a31c0-6ab9-4ddd-a0cb-dab8017bfef0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTUS2:20230131T063057Z:9f6a31c0-6ab9-4ddd-a0cb-dab8017bfef0" + "x-ms-correlation-request-id": "7b43bae3-d10b-4c8a-b892-1b08fcad64ea", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "WESTUS:20230214T015433Z:7b43bae3-d10b-4c8a-b892-1b08fcad64ea" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2068", + "Content-Length": "2064", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:30:57 GMT", + "Date": "Tue, 14 Feb 2023 01:54:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11edb1a2-7773-4ea2-9625-217d24a36e2d", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTUS2:20230131T063057Z:11edb1a2-7773-4ea2-9625-217d24a36e2d" + "x-ms-correlation-request-id": "4c82a5aa-9253-4100-8bad-8b659824a2dc", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "WESTUS:20230214T015433Z:4c82a5aa-9253-4100-8bad-8b659824a2dc" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:54:32.77787Z", + "duration": "PT25.2434968S", + "trackingId": "6e7c7e3b-f647-437f-89f3-16efde7920d1", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", + "timestamp": "2023-02-14T01:54:25.8272355Z", + "duration": "PT18.2377239S", + "trackingId": "8c24461e-e86c-4a82-bebd-7a4f05d1e0fb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -1971,128 +1854,129 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", + "Connection": "close", "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:02 GMT", + "Date": "Tue, 14 Feb 2023 01:54:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73f78ac6-c72a-4b03-8db4-2f90c106db45", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTUS2:20230131T063102Z:73f78ac6-c72a-4b03-8db4-2f90c106db45" + "x-ms-correlation-request-id": "a7da99cc-dbbf-4e4f-8829-fa050bf8ddf5", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "WESTUS:20230214T015438Z:a7da99cc-dbbf-4e4f-8829-fa050bf8ddf5" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2789", + "Content-Length": "2788", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:02 GMT", + "Date": "Tue, 14 Feb 2023 01:54:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "968699c1-b9cc-43e0-836b-7a1204f6bfc9", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTUS2:20230131T063103Z:968699c1-b9cc-43e0-836b-7a1204f6bfc9" + "x-ms-correlation-request-id": "e867793c-6c2b-42d8-ac75-0b138d01e723", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "WESTUS:20230214T015439Z:e867793c-6c2b-42d8-ac75-0b138d01e723" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/0675CD3B986E0182", + "operationId": "0675CD3B986E0182", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:58.3405004Z", - "duration": "PT3.6844685S", - "trackingId": "ee738423-d7cd-43cd-8fc7-10be76b2837f", + "timestamp": "2023-02-14T01:54:37.2838106Z", + "duration": "PT2.292524S", + "trackingId": "6448bbd6-3592-4b78-aa23-a9798e1ef40d", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", + "timestamp": "2023-02-14T01:54:34.9407916Z", + "duration": "PT27.4064184S", + "trackingId": "7a6ef0ea-d9f9-4a8b-8521-668d59566d38", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", + "timestamp": "2023-02-14T01:54:25.8272355Z", + "duration": "PT18.2377239S", + "trackingId": "8c24461e-e86c-4a82-bebd-7a4f05d1e0fb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -2100,13 +1984,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2115,113 +1999,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:07 GMT", + "Date": "Tue, 14 Feb 2023 01:54:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbeebeae-3908-4441-9dc2-fab23f9af3ad", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTUS2:20230131T063107Z:dbeebeae-3908-4441-9dc2-fab23f9af3ad" + "x-ms-correlation-request-id": "f7859c6f-ba87-41e2-9997-ee7a5fbd5e46", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "WESTUS:20230214T015444Z:f7859c6f-ba87-41e2-9997-ee7a5fbd5e46" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2789", + "Content-Length": "2788", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:08 GMT", + "Date": "Tue, 14 Feb 2023 01:54:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a656cb4-ac54-4ec5-9c07-0e6e6b3ab2f2", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTUS2:20230131T063108Z:5a656cb4-ac54-4ec5-9c07-0e6e6b3ab2f2" + "x-ms-correlation-request-id": "3e4fd85a-5ba5-48e6-966b-43e80b48d06c", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "WESTUS:20230214T015444Z:3e4fd85a-5ba5-48e6-966b-43e80b48d06c" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/0675CD3B986E0182", + "operationId": "0675CD3B986E0182", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:58.3405004Z", - "duration": "PT3.6844685S", - "trackingId": "ee738423-d7cd-43cd-8fc7-10be76b2837f", + "timestamp": "2023-02-14T01:54:37.2838106Z", + "duration": "PT2.292524S", + "trackingId": "6448bbd6-3592-4b78-aa23-a9798e1ef40d", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", + "timestamp": "2023-02-14T01:54:34.9407916Z", + "duration": "PT27.4064184S", + "trackingId": "7a6ef0ea-d9f9-4a8b-8521-668d59566d38", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", + "timestamp": "2023-02-14T01:54:25.8272355Z", + "duration": "PT18.2377239S", + "trackingId": "8c24461e-e86c-4a82-bebd-7a4f05d1e0fb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -2229,13 +2113,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2244,113 +2128,113 @@ "Content-Encoding": "gzip", "Content-Length": "20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:12 GMT", + "Date": "Tue, 14 Feb 2023 01:54:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7429cf8f-e4e8-41f5-a431-51a73569833c", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTUS2:20230131T063112Z:7429cf8f-e4e8-41f5-a431-51a73569833c" + "x-ms-correlation-request-id": "bc673cf6-1238-4f09-82ae-48b60cb001ae", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "WESTUS:20230214T015449Z:bc673cf6-1238-4f09-82ae-48b60cb001ae" }, "ResponseBody": { "status": "Running" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2789", + "Content-Length": "2788", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:13 GMT", + "Date": "Tue, 14 Feb 2023 01:54:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed92b812-3846-438e-b7b5-05d3c089ca39", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTUS2:20230131T063113Z:ed92b812-3846-438e-b7b5-05d3c089ca39" + "x-ms-correlation-request-id": "5b6eb1a8-8371-4432-8c50-f81481d74d77", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "WESTUS:20230214T015450Z:5b6eb1a8-8371-4432-8c50-f81481d74d77" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/0675CD3B986E0182", + "operationId": "0675CD3B986E0182", "properties": { "provisioningOperation": "Create", "provisioningState": "Running", - "timestamp": "2023-01-31T06:30:58.3405004Z", - "duration": "PT3.6844685S", - "trackingId": "ee738423-d7cd-43cd-8fc7-10be76b2837f", + "timestamp": "2023-02-14T01:54:37.2838106Z", + "duration": "PT2.292524S", + "trackingId": "6448bbd6-3592-4b78-aa23-a9798e1ef40d", "statusCode": "Accepted", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", + "timestamp": "2023-02-14T01:54:34.9407916Z", + "duration": "PT27.4064184S", + "trackingId": "7a6ef0ea-d9f9-4a8b-8521-668d59566d38", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", + "timestamp": "2023-02-14T01:54:25.8272355Z", + "duration": "PT18.2377239S", + "trackingId": "8c24461e-e86c-4a82-bebd-7a4f05d1e0fb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } } @@ -2358,466 +2242,79 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operationStatuses/08585252672409479412?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "20", + "Content-Length": "22", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:17 GMT", + "Date": "Tue, 14 Feb 2023 01:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a650964-6dcd-47ee-b5f5-c9a691b34ca4", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTUS2:20230131T063118Z:1a650964-6dcd-47ee-b5f5-c9a691b34ca4" + "x-ms-correlation-request-id": "f601785d-6083-41c6-a059-2e1ec9ed483c", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "WESTUS:20230214T015454Z:f601785d-6083-41c6-a059-2e1ec9ed483c" }, "ResponseBody": { - "status": "Running" + "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "2789", + "Content-Length": "8561", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:18 GMT", + "Date": "Tue, 14 Feb 2023 01:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25ba0e87-7d1d-4905-afd4-e37f783a74c8", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTUS2:20230131T063119Z:25ba0e87-7d1d-4905-afd4-e37f783a74c8" + "x-ms-correlation-request-id": "09f1632f-e068-4ceb-97b6-2241f6925f0a", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "WESTUS:20230214T015454Z:09f1632f-e068-4ceb-97b6-2241f6925f0a" }, "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:31:13.9549709Z", - "duration": "PT19.298939S", - "trackingId": "05ca470a-49cc-48c3-8dd2-2b7d6f7d7f0f", - "statusCode": "Accepted", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5819d87c-ff53-4f90-962f-3685a32305f4", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTUS2:20230131T063123Z:5819d87c-ff53-4f90-962f-3685a32305f4" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2789", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d15b8b69-bd57-4f45-9b3e-0e8ef24db658", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTUS2:20230131T063124Z:d15b8b69-bd57-4f45-9b3e-0e8ef24db658" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:31:13.9549709Z", - "duration": "PT19.298939S", - "trackingId": "05ca470a-49cc-48c3-8dd2-2b7d6f7d7f0f", - "statusCode": "Accepted", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdf20b6b-09a3-4f60-bf12-ae966dd8acd9", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTUS2:20230131T063128Z:fdf20b6b-09a3-4f60-bf12-ae966dd8acd9" - }, - "ResponseBody": { - "status": "Running" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "2789", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90188fcb-436c-409b-b6a3-ff575a2ef605", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTUS2:20230131T063130Z:90188fcb-436c-409b-b6a3-ff575a2ef605" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Running", - "timestamp": "2023-01-31T06:31:13.9549709Z", - "duration": "PT19.298939S", - "trackingId": "05ca470a-49cc-48c3-8dd2-2b7d6f7d7f0f", - "statusCode": "Accepted", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", - "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" - } - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", - "properties": { - "provisioningOperation": "Create", - "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", - "statusCode": "OK", - "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" - } - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operationStatuses/08585264602684627679?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "22", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0487a74-cf08-45d3-865a-35682a164348", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTUS2:20230131T063133Z:d0487a74-cf08-45d3-865a-35682a164348" - }, - "ResponseBody": { - "status": "Succeeded" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430?api-version=2020-06-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Length": "8492", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e01860d-e2d0-46c5-85d0-1f497e77d947", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTUS2:20230131T063133Z:5e01860d-e2d0-46c5-85d0-1f497e77d947" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430", - "name": "e2etest_test_119502617351-2374430", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285", + "name": "e2etest_test_855339767631-9567285", "type": "Microsoft.Resources/deployments", "properties": { - "templateHash": "12037445159745527008", + "templateHash": "4984303229931942319", "parameters": { "workspaceName": { "type": "String", - "value": "e2etest_test_119502617351" + "value": "e2etest_test_855339767631" }, "description": { "type": "String", - "value": "e2etest_test_119502617351 description" + "value": "e2etest_test_855339767631 description" }, "friendlyName": { "type": "String", - "value": "e2etest_test_119502617351 display name" + "value": "e2etest_test_855339767631 display name" }, "location": { "type": "String", @@ -2833,7 +2330,7 @@ }, "storageAccountName": { "type": "String", - "value": "e2etesttstoragea482cf16d" + "value": "e2etesttstorage7a156a630" }, "storageAccountType": { "type": "String", @@ -2857,7 +2354,7 @@ }, "keyVaultName": { "type": "String", - "value": "e2etesttkeyvault8b9fd471" + "value": "e2etesttkeyvault3e2a4ce5" }, "keyVaultBehindVNet": { "type": "String", @@ -2877,7 +2374,7 @@ }, "applicationInsightsName": { "type": "String", - "value": "e2etesttinsights03491969" + "value": "e2etesttinsights667c475d" }, "applicationInsightsResourceGroupName": { "type": "String", @@ -2968,7 +2465,7 @@ "tagValues": { "type": "Object", "value": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" } }, "privateEndpointName": { @@ -3016,13 +2513,19 @@ "primaryUserAssignedIdentity": { "type": "String", "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "Disabled" + } } }, "mode": "Incremental", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:31:32.1432904Z", - "duration": "PT1M12.5265552S", - "correlationId": "7e685d67-67f6-4f1f-b200-1e7e5674fa56", + "timestamp": "2023-02-14T01:54:53.0861668Z", + "duration": "PT46.2974214S", + "correlationId": "a608ee4c-ba33-4d72-8887-27beaaee8b51", "providers": [ { "namespace": "Microsoft.Storage", @@ -3090,9 +2593,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "resourceName": "e2etesttstorage7a156a630" }, { "dependsOn": [ @@ -3102,9 +2605,9 @@ "resourceName": "name/default" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" }, { "dependsOn": [ @@ -3121,19 +2624,19 @@ { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "resourceName": "e2etesttstorage7a156a630" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "resourceName": "e2etesttinsights667c475d" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", @@ -3141,16 +2644,16 @@ "resourceName": "name" } ], - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" }, { "dependsOn": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", @@ -3165,29 +2668,29 @@ ], "outputResources": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631" }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630" } ] } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3196,95 +2699,95 @@ "Content-Encoding": "gzip", "Content-Length": "3248", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:34 GMT", + "Date": "Tue, 14 Feb 2023 01:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c948559-b7b3-4a6f-b610-79518f55d69b", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTUS2:20230131T063135Z:2c948559-b7b3-4a6f-b610-79518f55d69b" + "x-ms-correlation-request-id": "aca3c072-15ab-48e0-966d-3314133762b3", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "WESTUS:20230214T015455Z:aca3c072-15ab-48e0-966d-3314133762b3" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/0675CD3B986E0182", + "operationId": "0675CD3B986E0182", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:31:31.9201362Z", - "duration": "PT37.2641043S", - "trackingId": "365fca85-be5b-4bd5-b3ff-fc9d941030d6", + "timestamp": "2023-02-14T01:54:52.8186527Z", + "duration": "PT17.8273661S", + "trackingId": "7ac03354-b073-4ed0-9a69-6b1f1fba0b18", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", + "timestamp": "2023-02-14T01:54:34.9407916Z", + "duration": "PT27.4064184S", + "trackingId": "7a6ef0ea-d9f9-4a8b-8521-668d59566d38", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", + "timestamp": "2023-02-14T01:54:25.8272355Z", + "duration": "PT18.2377239S", + "trackingId": "8c24461e-e86c-4a82-bebd-7a4f05d1e0fb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/08585264602684627679", - "operationId": "08585264602684627679", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/08585252672409479412", + "operationId": "08585252672409479412", "properties": { "provisioningOperation": "EvaluateDeploymentOutput", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:31:32.1181075Z", - "duration": "PT37.4620756S", - "trackingId": "76eaf9bc-2a05-4d0d-97bc-7f5cbcb50400", + "timestamp": "2023-02-14T01:54:53.0559193Z", + "duration": "PT18.0646327S", + "trackingId": "5adc8c49-e54a-4a7a-91ab-2287dc96df01", "statusCode": "OK" } } @@ -3292,13 +2795,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_119502617351-2374430/operations?api-version=2020-06-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_855339767631-9567285/operations?api-version=2020-06-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3307,95 +2810,95 @@ "Content-Encoding": "gzip", "Content-Length": "3248", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:35 GMT", + "Date": "Tue, 14 Feb 2023 01:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c3ae247-0f30-418c-a0ce-992c836f4ef9", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTUS2:20230131T063135Z:8c3ae247-0f30-418c-a0ce-992c836f4ef9" + "x-ms-correlation-request-id": "a7160039-f986-41c1-ab1a-299e69a16dee", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "WESTUS:20230214T015455Z:a7160039-f986-41c1-ab1a-299e69a16dee" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/2F3AF7E4BEAD2619", - "operationId": "2F3AF7E4BEAD2619", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/0675CD3B986E0182", + "operationId": "0675CD3B986E0182", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:31:31.9201362Z", - "duration": "PT37.2641043S", - "trackingId": "365fca85-be5b-4bd5-b3ff-fc9d941030d6", + "timestamp": "2023-02-14T01:54:52.8186527Z", + "duration": "PT17.8273661S", + "trackingId": "7ac03354-b073-4ed0-9a69-6b1f1fba0b18", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "resourceType": "Microsoft.MachineLearningServices/workspaces", - "resourceName": "e2etest_test_119502617351" + "resourceName": "e2etest_test_855339767631" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/7AF08B3CD704B1AD", - "operationId": "7AF08B3CD704B1AD", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/96554985478B4A5A", + "operationId": "96554985478B4A5A", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:30.9641411Z", - "duration": "PT9.8321629S", - "trackingId": "8592ff50-1e51-432c-afa6-53b0b72776ff", + "timestamp": "2023-02-14T01:54:34.9407916Z", + "duration": "PT27.4064184S", + "trackingId": "7a6ef0ea-d9f9-4a8b-8521-668d59566d38", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights03491969", - "resourceType": "Microsoft.Insights/components", - "resourceName": "e2etesttinsights03491969" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage7a156a630" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/368A367ABFA594F4", - "operationId": "368A367ABFA594F4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/DD9851FDA74E04ED", + "operationId": "DD9851FDA74E04ED", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.3233867Z", - "duration": "PT29.1914085S", - "trackingId": "9747de86-5155-475a-b8ee-cc3050f4f777", + "timestamp": "2023-02-14T01:54:25.8272355Z", + "duration": "PT18.2377239S", + "trackingId": "8c24461e-e86c-4a82-bebd-7a4f05d1e0fb", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault8b9fd471", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault3e2a4ce5", "resourceType": "Microsoft.KeyVault/vaults", - "resourceName": "e2etesttkeyvault8b9fd471" + "resourceName": "e2etesttkeyvault3e2a4ce5" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/529893B4D24D0D9C", - "operationId": "529893B4D24D0D9C", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/F8926336FCAAB339", + "operationId": "F8926336FCAAB339", "properties": { "provisioningOperation": "Create", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:30:50.4616854Z", - "duration": "PT29.2096991S", - "trackingId": "fe03129e-84c7-4d01-9837-dd0c74a2ce2d", + "timestamp": "2023-02-14T01:54:10.0800453Z", + "duration": "PT2.5456721S", + "trackingId": "e44f68cc-50ae-45ba-a6e8-8611c4287a4e", "statusCode": "OK", "targetResource": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "resourceType": "Microsoft.Storage/storageAccounts", - "resourceName": "e2etesttstoragea482cf16d" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights667c475d", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights667c475d" } } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_119502617351-2374430/operations/08585264602684627679", - "operationId": "08585264602684627679", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_855339767631-9567285/operations/08585252672409479412", + "operationId": "08585252672409479412", "properties": { "provisioningOperation": "EvaluateDeploymentOutput", "provisioningState": "Succeeded", - "timestamp": "2023-01-31T06:31:32.1181075Z", - "duration": "PT37.4620756S", - "trackingId": "76eaf9bc-2a05-4d0d-97bc-7f5cbcb50400", + "timestamp": "2023-02-14T01:54:53.0559193Z", + "duration": "PT18.0646327S", + "trackingId": "5adc8c49-e54a-4a7a-91ab-2287dc96df01", "statusCode": "OK" } } @@ -3403,408 +2906,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b1ac317f396b8eac773b8d3bf9197a7b-a35a7d45b4154630-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ddb1230-b5fe-44c3-8307-1f0106d3afa3", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063136Z:6ddb1230-b5fe-44c3-8307-1f0106d3afa3", - "x-request-time": "0.022" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "tags": { - "createdByToolkit": "sdk-v2-1.4.0" - }, - "etag": null, - "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", - "hbiWorkspace": false, - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "imageBuildCompute": null, - "provisioningState": "Succeeded", - "v1LegacyMode": false, - "softDeleteEnabled": false, - "containerRegistry": "", - "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", - "isPrivateLinkEnabled": false, - "notebookPreparationError": null - }, - "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", - "linkedModelInventoryArmId": null, - "privateLinkCount": 0, - "publicNetworkAccess": "Enabled", - "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", - "sasGetterUri": "", - "enableDataIsolation": false - }, - "identity": { - "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" - }, - "kind": "Default", - "sku": { - "name": "Basic", - "tier": "Basic" - }, - "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", - "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:30:56.9622888Z", - "lastModifiedBy": "mingweihe@microsoft.com", - "lastModifiedByType": "User" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7c5717274f7b8f347761d9fa489f7310-7769e9c3c2cd3b5c-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62aa5aca-ce1c-4406-9544-6e0e589d8ce3", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063136Z:62aa5aca-ce1c-4406-9544-6e0e589d8ce3", - "x-request-time": "0.086" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "tags": { - "createdByToolkit": "sdk-v2-1.4.0" - }, - "etag": null, - "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", - "hbiWorkspace": false, - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "imageBuildCompute": null, - "provisioningState": "Succeeded", - "v1LegacyMode": false, - "softDeleteEnabled": false, - "containerRegistry": "", - "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", - "isPrivateLinkEnabled": false, - "notebookPreparationError": null - }, - "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", - "linkedModelInventoryArmId": null, - "privateLinkCount": 0, - "publicNetworkAccess": "Enabled", - "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", - "sasGetterUri": "", - "enableDataIsolation": false - }, - "identity": { - "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" - }, - "kind": "Default", - "sku": { - "name": "Basic", - "tier": "Basic" - }, - "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", - "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:30:56.9622888Z", - "lastModifiedBy": "mingweihe@microsoft.com", - "lastModifiedByType": "User" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a2f5050b17c1d7e05281a4047c175f32-5cd1962819d99640-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a176550d-e0ea-4f04-b311-e43260cc571c", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063136Z:a176550d-e0ea-4f04-b311-e43260cc571c", - "x-request-time": "0.023" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "tags": { - "createdByToolkit": "sdk-v2-1.4.0" - }, - "etag": null, - "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", - "hbiWorkspace": false, - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "imageBuildCompute": null, - "provisioningState": "Succeeded", - "v1LegacyMode": false, - "softDeleteEnabled": false, - "containerRegistry": "", - "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", - "isPrivateLinkEnabled": false, - "notebookPreparationError": null - }, - "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", - "linkedModelInventoryArmId": null, - "privateLinkCount": 0, - "publicNetworkAccess": "Enabled", - "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", - "sasGetterUri": "", - "enableDataIsolation": false - }, - "identity": { - "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" - }, - "kind": "Default", - "sku": { - "name": "Basic", - "tier": "Basic" - }, - "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", - "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:30:56.9622888Z", - "lastModifiedBy": "mingweihe@microsoft.com", - "lastModifiedByType": "User" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "377", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "tags": { - "createdByToolkit": "sdk-v2-1.4.0" - }, - "identity": { - "type": "SystemAssigned" - }, - "properties": { - "description": "e2etest_test_119502617351 description", - "friendlyName": "e2etest_test_119502617351 display name", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969" - } - }, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OnYIGewlHg_-uEHgMQMJntZhM-ux07_wba6Vte7rHKk?api-version=2022-10-01-preview\u0026type=async", - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:31:37 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OnYIGewlHg_-uEHgMQMJntZhM-ux07_wba6Vte7rHKk?api-version=2022-10-01-preview\u0026type=location", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12c74feb-97d2-4fe2-8719-ffb373ae7acf", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063137Z:12c74feb-97d2-4fe2-8719-ffb373ae7acf", - "x-request-time": "0.138" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OnYIGewlHg_-uEHgMQMJntZhM-ux07_wba6Vte7rHKk?api-version=2022-10-01-preview\u0026type=async", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:31:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-14970fdc0e88cc49e850be18f4fe72a7-5564ddbd94999d30-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9157d8c7-8f54-48ef-85be-286f7f755a99", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063138Z:9157d8c7-8f54-48ef-85be-286f7f755a99", - "x-request-time": "0.020" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OnYIGewlHg_-uEHgMQMJntZhM-ux07_wba6Vte7rHKk?api-version=2022-10-01-preview\u0026type=async", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:32:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-750de11dd4e4467bf8c4385971313aa1-020bfc81753c6d38-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fba954a4-2380-4b3a-9636-2c3c5b052874", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063208Z:fba954a4-2380-4b3a-9636-2c3c5b052874", - "x-request-time": "0.025" - }, - "ResponseBody": { - "status": "Succeeded", - "percentComplete": 100.0 - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3812,11 +2920,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:32:07 GMT", + "Date": "Tue, 14 Feb 2023 01:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-96538b6b124158da370d8ee768274ce6-9b5730c872df8c23-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8c1c85c2513991539edaaab3b33b9bf4-e36663f47c5e24d6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -3825,54 +2933,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "120bcb69-2e96-4295-8a50-db5a3b224c2e", - "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-correlation-request-id": "cfa50258-973c-4b26-810d-040e800e168c", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063208Z:120bcb69-2e96-4295-8a50-db5a3b224c2e", - "x-request-time": "0.025" + "x-ms-routing-request-id": "WESTUS:20230214T015456Z:cfa50258-973c-4b26-810d-040e800e168c", + "x-request-time": "0.032" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -3881,23 +2994,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:31:37.6449868Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:54:35.7096464Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3905,11 +3018,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:32:08 GMT", + "Date": "Tue, 14 Feb 2023 01:54:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-29e8a40705e41ff1d4ff194e05d80908-f9024082627fd880-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-42010efb62a4bcb21a34bbb106616afe-ee1851158bf5e1a9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -3918,54 +3031,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "599c67fe-6571-4c5a-9d6a-6d36baa69e48", - "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-correlation-request-id": "be906ca9-8427-4a24-b1b6-a3e80f7819a6", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063208Z:599c67fe-6571-4c5a-9d6a-6d36baa69e48", - "x-request-time": "0.022" + "x-ms-routing-request-id": "WESTUS:20230214T015456Z:be906ca9-8427-4a24-b1b6-a3e80f7819a6", + "x-request-time": "0.041" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -3974,23 +3092,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:31:37.6449868Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:54:35.7096464Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3998,11 +3116,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:32:08 GMT", + "Date": "Tue, 14 Feb 2023 01:54:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c048900a755a72480c46cdeed45b6c05-6b9abafb34012788-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-68d94da4ae9b67f5291d807f459f512c-8c5203ea0ff63e15-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4011,54 +3129,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97272f3c-7f1c-4051-b90c-544401d03cf0", - "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-correlation-request-id": "929e1136-3da5-4de8-b0b9-45d22553bb45", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063209Z:97272f3c-7f1c-4051-b90c-544401d03cf0", + "x-ms-routing-request-id": "WESTUS:20230214T015456Z:929e1136-3da5-4de8-b0b9-45d22553bb45", "x-request-time": "0.031" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4067,17 +3190,17 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:31:37.6449868Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:54:35.7096464Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", @@ -4085,85 +3208,50 @@ "Connection": "keep-alive", "Content-Length": "377", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "identity": { "type": "SystemAssigned" }, "properties": { - "description": "e2etest_test_119502617351 description", - "friendlyName": "e2etest_test_119502617351 display name", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969" + "description": "e2etest_test_855339767631 description", + "friendlyName": "e2etest_test_855339767631 display name", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d" } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7sWeXqmeqs1Gq0Cj30ByxchTKgKPozDqvu0qTXC2rHg?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OURmP3synaHCTjwJezL8tp1QanmNV6XV4fR3qyyXhEM?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:32:09 GMT", + "Date": "Tue, 14 Feb 2023 01:54:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7sWeXqmeqs1Gq0Cj30ByxchTKgKPozDqvu0qTXC2rHg?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OURmP3synaHCTjwJezL8tp1QanmNV6XV4fR3qyyXhEM?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6608c79f-c78a-4a74-935d-179c85244acc", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "ce354cc8-4126-4398-9c58-a9943ab61113", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063210Z:6608c79f-c78a-4a74-935d-179c85244acc", - "x-request-time": "0.096" + "x-ms-routing-request-id": "WESTUS:20230214T015458Z:ce354cc8-4126-4398-9c58-a9943ab61113", + "x-request-time": "0.196" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7sWeXqmeqs1Gq0Cj30ByxchTKgKPozDqvu0qTXC2rHg?api-version=2022-10-01-preview\u0026type=async", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:32:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-23a30cd82fbeb0f623dd83c585d97db9-d9ccc02a9e565806-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "422aaf82-ae34-404b-afcd-17a0c5ea0df8", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063210Z:422aaf82-ae34-404b-afcd-17a0c5ea0df8", - "x-request-time": "0.026" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7sWeXqmeqs1Gq0Cj30ByxchTKgKPozDqvu0qTXC2rHg?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OURmP3synaHCTjwJezL8tp1QanmNV6XV4fR3qyyXhEM?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4171,34 +3259,34 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:32:39 GMT", + "Date": "Tue, 14 Feb 2023 01:54:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c304bd32b744932b076a5f098934f849-97ee2258d31fe980-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-db1765af5c5da5cc29fb3374bc6262ac-daaedb209df4bd5c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8bc750e-dc08-4902-aa37-a92ad8640192", - "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-correlation-request-id": "d68ae83a-3fa6-45ac-b8b6-8c5286f2b743", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063240Z:b8bc750e-dc08-4902-aa37-a92ad8640192", - "x-request-time": "0.021" + "x-ms-routing-request-id": "WESTUS:20230214T015458Z:d68ae83a-3fa6-45ac-b8b6-8c5286f2b743", + "x-request-time": "0.022" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7sWeXqmeqs1Gq0Cj30ByxchTKgKPozDqvu0qTXC2rHg?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/OURmP3synaHCTjwJezL8tp1QanmNV6XV4fR3qyyXhEM?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4206,21 +3294,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:10 GMT", + "Date": "Tue, 14 Feb 2023 01:55:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-66cfc877bab4aaa5742b55f9c1fa8210-44797ef2cf6d624b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4fc2eb33df5663a75cdb47edc97eb8fc-26809c4eaca9c859-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d47db71-8570-4ac1-a731-a8dc8b148b3e", - "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-correlation-request-id": "37f6ce71-1a8c-4dad-8835-9781b29e866a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063310Z:7d47db71-8570-4ac1-a731-a8dc8b148b3e", - "x-request-time": "0.054" + "x-ms-routing-request-id": "WESTUS:20230214T015528Z:37f6ce71-1a8c-4dad-8835-9781b29e866a", + "x-request-time": "0.024" }, "ResponseBody": { "status": "Succeeded", @@ -4228,13 +3316,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4242,11 +3330,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:10 GMT", + "Date": "Tue, 14 Feb 2023 01:55:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-624be872b5ec4184672720650787d9e2-8890c469f6c150f4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dc481b04a3e1fc513e8863c506930c8a-8955fab46c0bf711-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4255,54 +3343,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a3b2d8b-c24a-4241-8181-36cc96859897", - "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-correlation-request-id": "7dc2769f-a664-443e-83a9-ac5a04063af5", + "x-ms-ratelimit-remaining-subscription-reads": "11982", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063310Z:0a3b2d8b-c24a-4241-8181-36cc96859897", - "x-request-time": "0.021" + "x-ms-routing-request-id": "WESTUS:20230214T015528Z:7dc2769f-a664-443e-83a9-ac5a04063af5", + "x-request-time": "0.036" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4311,23 +3404,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:32:09.8216189Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:54:58.0057571Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4335,11 +3428,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:10 GMT", + "Date": "Tue, 14 Feb 2023 01:55:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6692bb057c7a85f4bf00addb8cd67ddb-dd004354e3f71bfe-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6663bac485be8ed7935719dcf6b73bdc-8388017d0e79bb79-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4348,54 +3441,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb403531-8026-41f8-b221-f86d25d3037f", - "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-correlation-request-id": "9414b7cf-0e9d-4232-8462-8b6e065572a2", + "x-ms-ratelimit-remaining-subscription-reads": "11981", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063310Z:bb403531-8026-41f8-b221-f86d25d3037f", - "x-request-time": "0.028" + "x-ms-routing-request-id": "WESTUS:20230214T015529Z:9414b7cf-0e9d-4232-8462-8b6e065572a2", + "x-request-time": "0.032" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4404,23 +3502,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:32:09.8216189Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:54:58.0057571Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4428,11 +3526,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:11 GMT", + "Date": "Tue, 14 Feb 2023 01:55:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-009df226badc1bcf58bc978dcd2b8234-bf9fd403c7c05a15-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-38488e89efdd1944dea86c68c6fd4e0f-15ef3211ffa1a54a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4441,54 +3539,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "867aa83b-15a4-44ef-a54b-60f66a399319", - "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-correlation-request-id": "5fe17a73-33ec-4911-9cdd-d4808312cc87", + "x-ms-ratelimit-remaining-subscription-reads": "11980", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063311Z:867aa83b-15a4-44ef-a54b-60f66a399319", - "x-request-time": "0.023" + "x-ms-routing-request-id": "WESTUS:20230214T015529Z:5fe17a73-33ec-4911-9cdd-d4808312cc87", + "x-request-time": "0.030" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4497,17 +3600,17 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:32:09.8216189Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:54:58.0057571Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", @@ -4515,50 +3618,50 @@ "Connection": "keep-alive", "Content-Length": "377", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "identity": { "type": "SystemAssigned" }, "properties": { - "description": "e2etest_test_119502617351 description", - "friendlyName": "e2etest_test_119502617351 display name", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969" + "description": "e2etest_test_855339767631 description", + "friendlyName": "e2etest_test_855339767631 display name", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d" } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/ehZqtG2tqmCDX40Tyv-sOFmZiT1S-9jEBsiaJ5z6LFs?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/fnFL5StIRRDTvi3KvmUcVw2Pap6TJOS2lUKVCj3ftb0?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:33:12 GMT", + "Date": "Tue, 14 Feb 2023 01:55:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/ehZqtG2tqmCDX40Tyv-sOFmZiT1S-9jEBsiaJ5z6LFs?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/fnFL5StIRRDTvi3KvmUcVw2Pap6TJOS2lUKVCj3ftb0?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e90becd0-975a-4b2f-a950-65159810bec9", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "909283b5-d2b3-4b35-b5e3-a4384fb36dce", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063312Z:e90becd0-975a-4b2f-a950-65159810bec9", - "x-request-time": "0.191" + "x-ms-routing-request-id": "WESTUS:20230214T015530Z:909283b5-d2b3-4b35-b5e3-a4384fb36dce", + "x-request-time": "0.171" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/ehZqtG2tqmCDX40Tyv-sOFmZiT1S-9jEBsiaJ5z6LFs?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/fnFL5StIRRDTvi3KvmUcVw2Pap6TJOS2lUKVCj3ftb0?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4566,34 +3669,34 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:12 GMT", + "Date": "Tue, 14 Feb 2023 01:55:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9b44d3402cf9d493edf3f6ed847c7fa9-5c162913d7d297b4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fbf596131a8979033a2fd1d56c806466-b6f277efb3561d94-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fb1d53d-00c0-41bd-843e-2cbc7a2a590a", - "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-correlation-request-id": "3504ac37-c7d6-4094-9c58-b7939d2ef891", + "x-ms-ratelimit-remaining-subscription-reads": "11979", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063312Z:0fb1d53d-00c0-41bd-843e-2cbc7a2a590a", - "x-request-time": "0.019" + "x-ms-routing-request-id": "WESTUS:20230214T015530Z:3504ac37-c7d6-4094-9c58-b7939d2ef891", + "x-request-time": "0.021" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/ehZqtG2tqmCDX40Tyv-sOFmZiT1S-9jEBsiaJ5z6LFs?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/fnFL5StIRRDTvi3KvmUcVw2Pap6TJOS2lUKVCj3ftb0?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4601,21 +3704,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:42 GMT", + "Date": "Tue, 14 Feb 2023 01:56:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0960e96135492e21e0d3a0d2627e4e16-d20d8bab2ae08643-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c2c884e65ab26b72611fd5113d3c887f-881e05c99288e755-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d12b7da6-618f-46b6-8a88-9bb139e1bed8", - "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-correlation-request-id": "3f0966a7-9f81-4254-818f-fa798fbb246f", + "x-ms-ratelimit-remaining-subscription-reads": "11978", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063342Z:d12b7da6-618f-46b6-8a88-9bb139e1bed8", - "x-request-time": "0.022" + "x-ms-routing-request-id": "WESTUS:20230214T015600Z:3f0966a7-9f81-4254-818f-fa798fbb246f", + "x-request-time": "0.021" }, "ResponseBody": { "status": "Succeeded", @@ -4623,13 +3726,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4637,11 +3740,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:42 GMT", + "Date": "Tue, 14 Feb 2023 01:56:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e2f21bf61dc351af5aaf9410e0ac838f-1a5ca8ad7e87c6a4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f289f0ad055a029d9ee2158a75ef3a03-a303cfffc49e3b97-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4650,54 +3753,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8072f639-b491-40da-8dad-60701a459f66", - "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-correlation-request-id": "b2b46f4c-781b-4059-bfdd-f1e9969afac6", + "x-ms-ratelimit-remaining-subscription-reads": "11977", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063342Z:8072f639-b491-40da-8dad-60701a459f66", - "x-request-time": "0.022" + "x-ms-routing-request-id": "WESTUS:20230214T015601Z:b2b46f4c-781b-4059-bfdd-f1e9969afac6", + "x-request-time": "0.031" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4706,23 +3814,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:33:12.0149679Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:55:30.1478271Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4730,11 +3838,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:42 GMT", + "Date": "Tue, 14 Feb 2023 01:56:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-80226f7bf4443a43d00675d15424e6bd-e21e8cea6642f551-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-03a5cf219dec39257dd72ef4c54f0046-a3a80443d2299c1c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4743,54 +3851,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "083ebe6b-d4f3-4575-b8c9-467756998447", - "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-correlation-request-id": "cc91fe2c-9c9e-47bf-bb58-a4c3affc0277", + "x-ms-ratelimit-remaining-subscription-reads": "11976", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063343Z:083ebe6b-d4f3-4575-b8c9-467756998447", - "x-request-time": "0.027" + "x-ms-routing-request-id": "WESTUS:20230214T015601Z:cc91fe2c-9c9e-47bf-bb58-a4c3affc0277", + "x-request-time": "0.032" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4799,23 +3912,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:33:12.0149679Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:55:30.1478271Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4823,11 +3936,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:42 GMT", + "Date": "Tue, 14 Feb 2023 01:56:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-01d6f4f327eb87ccc5d03329dfbea0be-e7bc4ae0c03887ed-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b81e83cdbe6113d992bf6f084cc9965a-da14226e718a214d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -4836,54 +3949,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31f07875-f8e3-463d-aef3-a7221dc32b8c", - "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-correlation-request-id": "6176d6aa-a7eb-42dc-be7f-6be34ef3258b", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063343Z:31f07875-f8e3-463d-aef3-a7221dc32b8c", - "x-request-time": "0.022" + "x-ms-routing-request-id": "WESTUS:20230214T015601Z:6176d6aa-a7eb-42dc-be7f-6be34ef3258b", + "x-request-time": "0.028" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "createdByToolkit": "sdk-v2-1.4.0" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "e2etest_test_119502617351 display name", - "description": "e2etest_test_119502617351 description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights03491969", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -4892,72 +4010,68 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:33:12.0149679Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:55:30.1478271Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "531", + "Content-Length": "377", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "tags": { - "k1": "v1", - "k2": "v2" + "createdByToolkit": "sdk-v2-1.5.0" }, "identity": { "type": "SystemAssigned" }, "properties": { - "description": "Test description", - "friendlyName": "Test display name", - "imageBuildCompute": "compute", - "publicNetworkAccess": "Disabled", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/microsoft.insights/components/aimhetest2", - "containerRegistry": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/acrmhetest2" + "description": "e2etest_test_855339767631 description", + "friendlyName": "e2etest_test_855339767631 display name", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d" } }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/rMeyULbjzjbJEmUDxBx25bphNjsk79RsHa0sOkIN01I?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/06jrkjGJMQKgya6z7rSq4XqdfVVOyNkxi83ENqCTZVI?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:33:43 GMT", + "Date": "Tue, 14 Feb 2023 01:56:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/rMeyULbjzjbJEmUDxBx25bphNjsk79RsHa0sOkIN01I?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/06jrkjGJMQKgya6z7rSq4XqdfVVOyNkxi83ENqCTZVI?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b45da29-5775-4166-8a92-a33a7650c579", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "563f264a-7972-4ea0-87d5-3552ffb971b2", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063344Z:0b45da29-5775-4166-8a92-a33a7650c579", - "x-request-time": "0.194" + "x-ms-routing-request-id": "WESTUS:20230214T015602Z:563f264a-7972-4ea0-87d5-3552ffb971b2", + "x-request-time": "0.115" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/rMeyULbjzjbJEmUDxBx25bphNjsk79RsHa0sOkIN01I?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/06jrkjGJMQKgya6z7rSq4XqdfVVOyNkxi83ENqCTZVI?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4965,34 +4079,34 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:33:43 GMT", + "Date": "Tue, 14 Feb 2023 01:56:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b096004ed1f7409d7d2136ad7b02affd-b1f966f890409661-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4d4c17eb53c8b117b1ddd3bed7a7c521-9d8eeaa30f0d3e36-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1918be6f-f595-4242-8408-04e0ca76ab39", - "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-correlation-request-id": "8dcd1b4c-7d17-499b-8ffd-5e0f0a84a61e", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063344Z:1918be6f-f595-4242-8408-04e0ca76ab39", - "x-request-time": "0.027" + "x-ms-routing-request-id": "WESTUS:20230214T015602Z:8dcd1b4c-7d17-499b-8ffd-5e0f0a84a61e", + "x-request-time": "0.021" }, "ResponseBody": { "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/rMeyULbjzjbJEmUDxBx25bphNjsk79RsHa0sOkIN01I?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/06jrkjGJMQKgya6z7rSq4XqdfVVOyNkxi83ENqCTZVI?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5000,21 +4114,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:34:13 GMT", + "Date": "Tue, 14 Feb 2023 01:56:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2255d13e9ecb01f58e75f3a78c948187-1894386903359385-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6e353c3f4adf4f6cdcb6097980c90970-d21d061d98550807-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31a59876-c26f-4804-8b4e-1b6a634a7940", - "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-correlation-request-id": "a55c17de-1369-4f6a-96d5-71f525932057", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063414Z:31a59876-c26f-4804-8b4e-1b6a634a7940", - "x-request-time": "0.080" + "x-ms-routing-request-id": "WESTUS:20230214T015632Z:a55c17de-1369-4f6a-96d5-71f525932057", + "x-request-time": "0.023" }, "ResponseBody": { "status": "Succeeded", @@ -5022,13 +4136,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5036,11 +4150,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:34:14 GMT", + "Date": "Tue, 14 Feb 2023 01:56:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-482c208e6f07ad3836af31705fbf481a-4148d9da86d09c6d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-de6c62fab05f57df96c35ca4ae46caf2-6d614973c18e2a88-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -5049,55 +4163,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fc59d15-858a-46c8-9276-a89d43d309b8", - "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-correlation-request-id": "393b5321-275d-4fd2-9ab5-46addb186ba6", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063414Z:8fc59d15-858a-46c8-9276-a89d43d309b8", - "x-request-time": "0.028" + "x-ms-routing-request-id": "WESTUS:20230214T015633Z:393b5321-275d-4fd2-9ab5-46addb186ba6", + "x-request-time": "0.030" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "k1": "v1", - "k2": "v2" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "Test display name", - "description": "Test description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/aimhetest2", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "imageBuildCompute": "compute", + "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, - "containerRegistry": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/acrmhetest2", + "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, - "publicNetworkAccess": "Disabled", + "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -5106,23 +4224,23 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:33:43.8851074Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:56:02.4760311Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5130,11 +4248,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:34:14 GMT", + "Date": "Tue, 14 Feb 2023 01:56:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-67e213c42707ef3176b6fdb29c6048a5-3c5e3fcda6c34fdf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a1fb5587d2f49476a0a5fac39b5feaf8-aeb2c27b5698d0d4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -5143,55 +4261,59 @@ ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "296d2e46-f7a8-4acc-85dd-b3061b793e08", - "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-correlation-request-id": "1249f69d-862a-40cc-a869-2223219c3b80", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063414Z:296d2e46-f7a8-4acc-85dd-b3061b793e08", - "x-request-time": "0.024" + "x-ms-routing-request-id": "WESTUS:20230214T015633Z:1249f69d-862a-40cc-a869-2223219c3b80", + "x-request-time": "0.029" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "name": "e2etest_test_119502617351", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", "type": "Microsoft.MachineLearningServices/workspaces", "location": "eastus2euap", "tags": { - "k1": "v1", - "k2": "v2" + "createdByToolkit": "sdk-v2-1.5.0" }, "etag": null, "properties": { - "friendlyName": "Test display name", - "description": "Test description", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/aimhetest2", + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "imageBuildCompute": "compute", + "imageBuildCompute": null, "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, "v1LegacyMode": false, "softDeleteEnabled": false, - "containerRegistry": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/acrmhetest2", + "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", "notebookInfo": { - "resourceId": "3b3a30d8dcce4f5ca6d88a888fbe99f9", - "fqdn": "ml-e2etesttest-eastus2euap-d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538.eastus2euap.notebooks.azure.net", + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "d9a3cb2c-7b6b-44e6-8912-6d1a3aea0538", + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", "linkedModelInventoryArmId": null, "privateLinkCount": 0, - "publicNetworkAccess": "Disabled", + "publicNetworkAccess": "Enabled", "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", "sasGetterUri": "", "enableDataIsolation": false }, "identity": { "type": "SystemAssigned", - "principalId": "37a4d536-e161-4b41-a5d9-1a807b4b2bc9", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "kind": "Default", @@ -5200,172 +4322,206 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2023-01-31T06:30:56.9622888Z", - "createdBy": "mingweihe@microsoft.com", + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2023-01-31T06:33:43.8851074Z", - "lastModifiedBy": "mingweihe@microsoft.com", + "lastModifiedAt": "2023-02-14T01:56:02.4760311Z", + "lastModifiedBy": "joharrington@microsoft.com", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/aimhetest2?api-version=2015-05-01", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Access-Control-Expose-Headers": "Request-Context", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:34:21 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:56:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed", - "Server": "Microsoft-IIS/10.0", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-ebefc05ca6b77d966be62a2cd404254e-b4d6db8f8aa06dec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25cd6080-0a10-4ead-a950-2492a624f46c", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTUS2:20230131T063422Z:25cd6080-0a10-4ead-a950-2492a624f46c", - "X-Powered-By": "ASP.NET" + "x-ms-correlation-request-id": "b02f9b9a-36fa-49b5-b42d-66ceb4fa8233", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015633Z:b02f9b9a-36fa-49b5-b42d-66ceb4fa8233", + "x-request-time": "0.028" }, - "ResponseBody": null + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "name": "e2etest_test_855339767631", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2euap", + "tags": { + "createdByToolkit": "sdk-v2-1.5.0" + }, + "etag": null, + "properties": { + "friendlyName": "e2etest_test_855339767631 display name", + "description": "e2etest_test_855339767631 description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage7a156a630", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault3e2a4ce5", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights667c475d", + "hbiWorkspace": false, + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "imageBuildCompute": null, + "provisioningState": "Succeeded", + "managedNetwork": { + "networkId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "outboundRules": {} + }, + "v1LegacyMode": false, + "softDeleteEnabled": false, + "containerRegistry": "", + "creationTime": "2023-02-14T01:54:35.7096464Z", + "notebookInfo": { + "resourceId": "fa1c121514d34f348531e6428747c837", + "fqdn": "ml-e2etesttest-eastus2euap-1d6912b4-e195-43e1-955c-64a59f2b1af0.eastus2euap.notebooks.azure.net", + "isPrivateLinkEnabled": false, + "notebookPreparationError": null + }, + "storageHnsEnabled": false, + "workspaceId": "1d6912b4-e195-43e1-955c-64a59f2b1af0", + "linkedModelInventoryArmId": null, + "privateLinkCount": 0, + "publicNetworkAccess": "Enabled", + "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", + "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631", + "sdkTelemetryAppInsightsKey": "bf5fc3cc-fd87-47a0-99e2-70f15d4bb11e", + "sasGetterUri": "", + "enableDataIsolation": false + }, + "identity": { + "type": "SystemAssigned", + "principalId": "a96f5297-a16a-47f8-9bcf-795879b29243", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + }, + "kind": "Default", + "sku": { + "name": "Basic", + "tier": "Basic" + }, + "systemData": { + "createdAt": "2023-02-14T01:54:35.7096464Z", + "createdBy": "joharrington@microsoft.com", + "createdByType": "User", + "lastModifiedAt": "2023-02-14T01:56:02.4760311Z", + "lastModifiedBy": "joharrington@microsoft.com", + "lastModifiedByType": "User" + } + } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstoragea482cf16d?api-version=2019-06-01", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_855339767631?api-version=2022-12-01-preview", + "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Content-Type": "text/plain; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:34:27 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", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7288fec5-5f34-4b7c-b11b-ddd2ec89ae8a", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTUS2:20230131T063428Z:7288fec5-5f34-4b7c-b11b-ddd2ec89ae8a" + "Content-Length": "603", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault8b9fd471?api-version=2019-09-01", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "RequestBody": { + "tags": { + "k1": "v1", + "k2": "v2" + }, + "identity": { + "type": "SystemAssigned" + }, + "properties": { + "description": "Test description", + "friendlyName": "Test display name", + "imageBuildCompute": "compute", + "publicNetworkAccess": "Disabled", + "applicationInsights": "/subscriptions/8f338f6e-4fce-44ae-969c-fc7d8fda030e/resourceGroups/rg-mhe-e2e-test-dont-remove/providers/microsoft.insights/components/aimhetest2", + "containerRegistry": "/subscriptions/8f338f6e-4fce-44ae-969c-fc7d8fda030e/resourceGroups/rg-mhe-e2e-test-dont-remove/providers/Microsoft.ContainerRegistry/registries/acrmhetest2", + "managedNetwork": {} + } }, - "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/_CKHzDDHhBWiWSgBrFV3A4wcKrve8BI6rHTvtHVBL3Q?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:34:32 GMT", + "Date": "Tue, 14 Feb 2023 01:56:34 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/_CKHzDDHhBWiWSgBrFV3A4wcKrve8BI6rHTvtHVBL3Q?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-AspNet-Version": "4.0.30319", + "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bd79369-eade-4651-b1a2-c8cd452a8e1b", - "x-ms-keyvault-service-version": "1.5.655.1", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTUS2:20230131T063433Z:1bd79369-eade-4651-b1a2-c8cd452a8e1b" + "x-ms-correlation-request-id": "662eaf49-c917-4de3-9717-c3d6428f50d7", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015634Z:662eaf49-c917-4de3-9717-c3d6428f50d7", + "x-request-time": "0.202" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/acrmhetest2?api-version=2019-05-01", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/_CKHzDDHhBWiWSgBrFV3A4wcKrve8BI6rHTvtHVBL3Q?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "api-supported-versions": "2019-05-01", - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:34:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-HTTPAPI/2.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b19e692-0b37-45fe-9f81-e51d2d993590", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTUS2:20230131T063439Z:7b19e692-0b37-45fe-9f81-e51d2d993590" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_119502617351?api-version=2022-10-01-preview", - "RequestMethod": "DELETE", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7ddd3d3e-ff21-4fbd-a7cb-fb921ccb16ec?api-version=2022-10-01-preview\u0026type=async", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:34:39 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:56:34 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7ddd3d3e-ff21-4fbd-a7cb-fb921ccb16ec?api-version=2022-10-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-324d30ade4cb8b11c1eb961e6979a365-b979c302b16f1c69-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a78a849-0480-4727-bda9-6840b68f0403", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-correlation-request-id": "e7acd7c2-9247-4dec-8f19-3d09df4d2e50", + "x-ms-ratelimit-remaining-subscription-reads": "11969", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063440Z:9a78a849-0480-4727-bda9-6840b68f0403", - "x-request-time": "0.094" + "x-ms-routing-request-id": "WESTUS:20230214T015635Z:e7acd7c2-9247-4dec-8f19-3d09df4d2e50", + "x-request-time": "0.027" }, - "ResponseBody": null + "ResponseBody": { + "status": "InProgress" + } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7ddd3d3e-ff21-4fbd-a7cb-fb921ccb16ec?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/_CKHzDDHhBWiWSgBrFV3A4wcKrve8BI6rHTvtHVBL3Q?api-version=2022-12-01-preview\u0026type=async", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", - "Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTY3NTE0MjgwNCwibmJmIjoxNjc1MTQyODA0LCJleHAiOjE2NzUxNDc2MjAsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy8yNTlkMGY1MS1iODBmLTQ2YjUtYWE2OC0wM2JiMzc1NDRkMjMvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFhUUFXLzhUQUFBQTFBNzVqVEhvREtJcVY0aFFpdkN0Rm9rM0l6NjZrTER0UHZJTXlMU1lXU1dRam9Kb3RpVzBPWms0L3lreHhsek1TeXV3N25kWm5lWFU0UXRDSkt2SDVMV1YyRWlPbUx4YUE0Q2J5aFJ5OW9HcFlSNkRWZ0tVMUlzaUlxVk1lYkgzR3p0VnkxTkZLWFJuMUJGNU5rL0Vuc1N6NnpJV1VqVld4T0pMaTZWMUZGMzBTcUZ1VFlxby8yZURnRzBlOStxeXVZYWtjeVdoejdIZTYxeEsrTk5rNWc9PSIsImFtciI6WyJwd2QiLCJyc2EiLCJ3aWEiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6IjlmMjdmOGM5LWQ1YjQtNDM5Ni1hN2YyLTk2MGU0NWIwNjU4YSIsImZhbWlseV9uYW1lIjoiSGUiLCJnaXZlbl9uYW1lIjoiTWluZ3dlaSIsImlwYWRkciI6Ijc1LjE3Mi45My41NCIsIm5hbWUiOiJNaW5nd2VpIEhlIiwib2lkIjoiMjU5ZDBmNTEtYjgwZi00NmI1LWFhNjgtMDNiYjM3NTQ0ZDIzIiwib25wcmVtX3NpZCI6IlMtMS01LTIxLTIxMjc1MjExODQtMTYwNDAxMjkyMC0xODg3OTI3NTI3LTQ5NzI3Njg4IiwicHVpZCI6IjEwMDMyMDAxM0FBQzNFNDIiLCJyaCI6IjAuQVJvQXY0ajVjdkdHcjBHUnF5MTgwQkhiUjBaSWYza0F1dGRQdWtQYXdmajJNQk1hQUFRLiIsInNjcCI6InVzZXJfaW1wZXJzb25hdGlvbiIsInN1YiI6IlAwRFpkRlcxaDM2N1U3eTZxTktsTTBuZUhieTJmbWFzWk9LcXVUelNPUUkiLCJ0aWQiOiI3MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDciLCJ1bmlxdWVfbmFtZSI6Im1pbmd3ZWloZUBtaWNyb3NvZnQuY29tIiwidXBuIjoibWluZ3dlaWhlQG1pY3Jvc29mdC5jb20iLCJ1dGkiOiJmTUNEbXdLYmRrNnFXbGRmZ2QyU0FBIiwidmVyIjoiMS4wIiwid2lkcyI6WyJiNzlmYmY0ZC0zZWY5LTQ2ODktODE0My03NmIxOTRlODU1MDkiXSwieG1zX2NjIjpbIkNQMSJdLCJ4bXNfdGNkdCI6MTI4OTI0MTU0N30.Vv1cPg7gumORugu6PvChG3aYGDssFqcyqxgajY-_BzkH5FfbCT9mJvCiwuQn0ifm9BslDibDTbJTTA9BydSScqFcY7gD1wc7jR5-VhOidiZFIaNT2sp6fdGoX3rWdldV7DqW_n8yDTxlnkxkzN0vkKxSuQRE-iC9N7Got8Diy3KR30aspcDyTkYXSO8VskcE7Muin9kShSdavr6cfwasnHAexUBBi-pONI6sG5wgAlE9dB202rx2TfTULDEK5s99vCqE3AEqUkdmq7xMpQTSVpsAm9NlNGgHxa_OwBEZWY478rS3ppGYqxgVUBmGMAR08U2EAk-jd40RprQlH5_dKA", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)", - "x-ms-client-request-id": "578bc2a8-a131-11ed-92c9-5cf370a2370c" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5373,33 +4529,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:34:39 GMT", + "Date": "Tue, 14 Feb 2023 01:57:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cbdcee34b17ef3099326a313fa313f63-f9f7befec924d3d0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ead14f3329fcd76a80cc21fb26250a23-20748d3823887768-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], "x-aml-cluster": "vienna-eastus2euap-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84001a59-5659-433b-9d3c-6f044b3ff5f4", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-request-id": "84001a59-5659-433b-9d3c-6f044b3ff5f4", + "x-ms-correlation-request-id": "1fc4ebba-83d6-45a2-9ab2-49d2a12559db", + "x-ms-ratelimit-remaining-subscription-reads": "11968", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063440Z:84001a59-5659-433b-9d3c-6f044b3ff5f4", - "x-request-time": "0.020" + "x-ms-routing-request-id": "WESTUS:20230214T015705Z:1fc4ebba-83d6-45a2-9ab2-49d2a12559db", + "x-request-time": "0.066" }, "ResponseBody": { - "status": "InProgress" + "status": "Failed", + "error": { + "code": "BadRequest", + "message": "Unable to check existing role assignments on resource /subscriptions/8f338f6e-4fce-44ae-969c-fc7d8fda030e/resourceGroups/rg-mhe-e2e-test-dont-remove/providers/Microsoft.ContainerRegistry/registries/acrmhetest2: The Resource \u0027Microsoft.ContainerRegistry/registries/acrmhetest2\u0027 under resource group \u0027rg-mhe-e2e-test-dont-remove\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } } } ], "Variables": { - "deployment_name": "e2etest_test_119502617351-2374430", - "insights_name": "e2etesttinsights03491969", - "keyvault_name": "e2etesttkeyvault8b9fd471", - "storage_name": "e2etesttstoragea482cf16d", - "wps_name": "test_119502617351" + "deployment_name": "e2etest_test_855339767631-9567285", + "insights_name": "e2etesttinsights667c475d", + "keyvault_name": "e2etesttkeyvault3e2a4ce5", + "storage_name": "e2etesttstorage7a156a630", + "wps_name": "test_855339767631" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_create_update_delete_with_managed_network.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_create_update_delete_with_managed_network.json new file mode 100644 index 0000000000000..b28a867f14060 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_create_update_delete_with_managed_network.json @@ -0,0 +1,3947 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "253", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "edbc42f6-61a9-4b46-9e1b-f0835a506113", + "x-ms-failure-cause": "gateway", + "x-ms-routing-request-id": "WESTUS:20230214T020127Z:edbc42f6-61a9-4b46-9e1b-f0835a506113" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/DefaultResourceGroup-southcentralus?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "272", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f96eb492-c304-4ef2-8239-16af821db1ff", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-routing-request-id": "WESTUS:20230214T020128Z:f96eb492-c304-4ef2-8239-16af821db1ff" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus", + "name": "DefaultResourceGroup-southcentralus", + "type": "Microsoft.Resources/resourceGroups", + "location": "southcentralus", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus/resources?$filter=substringof%28%27DefaultWorkspace-southcentralus%27%2Cname%29\u0026api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "322", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "028fd248-7a40-4c76-bbd4-8cc09e92169e", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-routing-request-id": "WESTUS:20230214T020129Z:028fd248-7a40-4c76-bbd4-8cc09e92169e" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-southcentralus", + "name": "DefaultWorkspace-southcentralus", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "southcentralus" + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211?api-version=2020-06-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "20217", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "properties": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "workspaceName": { + "type": "string", + "metadata": { + "description": "Specifies the name of the Azure Machine Learning workspace." + } + }, + "description": { + "type": "string", + "metadata": { + "description": "Description string." + } + }, + "friendlyName": { + "type": "string", + "metadata": { + "description": "Friendly name." + } + }, + "location": { + "type": "string", + "metadata": { + "description": "Specifies the location for all resources." + } + }, + "resourceGroupName": { + "type": "string", + "metadata": { + "description": "Specifies the resource group name of the Azure Machine Learning workspace." + } + }, + "storageAccountOption": { + "type": "string", + "defaultValue": "new", + "allowedValues": [ + "new", + "existing" + ], + "metadata": { + "description": "Determines whether or not a new storage should be provisioned." + } + }, + "storageAccountName": { + "type": "string", + "defaultValue": "[concat(\u0027sa\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the storage account." + } + }, + "storageAccountType": { + "type": "string", + "defaultValue": "Standard_LRS" + }, + "storageAccountBehindVNet": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "true", + "false" + ], + "metadata": { + "description": "Determines whether or not to put the storage account behind VNet" + } + }, + "storageAccountResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "storageAccountLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "keyVaultOption": { + "type": "string", + "defaultValue": "new", + "allowedValues": [ + "new", + "existing" + ], + "metadata": { + "description": "Determines whether or not a new key vault should be provisioned." + } + }, + "keyVaultName": { + "type": "string", + "defaultValue": "[concat(\u0027kv\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the key vault." + } + }, + "keyVaultBehindVNet": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "true", + "false" + ], + "metadata": { + "description": "Determines whether or not to put the storage account behind VNet" + } + }, + "keyVaultResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "keyVaultLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "applicationInsightsOption": { + "type": "string", + "defaultValue": "new", + "allowedValues": [ + "new", + "existing" + ], + "metadata": { + "description": "Determines whether or not new ApplicationInsights should be provisioned." + } + }, + "applicationInsightsName": { + "type": "string", + "defaultValue": "[concat(\u0027ai\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of ApplicationInsights." + } + }, + "applicationInsightsResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "applicationInsightsLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "containerRegistryOption": { + "type": "string", + "defaultValue": "none", + "allowedValues": [ + "new", + "existing", + "none" + ], + "metadata": { + "description": "Determines whether or not a new container registry should be provisioned." + } + }, + "containerRegistryName": { + "type": "string", + "defaultValue": "[concat(\u0027cr\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "The container registry bind to the workspace." + } + }, + "containerRegistrySku": { + "type": "string", + "defaultValue": "Standard", + "allowedValues": [ + "Basic", + "Standard", + "Premium" + ] + }, + "containerRegistryResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "containerRegistryBehindVNet": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "true", + "false" + ], + "metadata": { + "description": "Determines whether or not to put container registry behind VNet." + } + }, + "containerRegistryLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "vnetOption": { + "type": "string", + "defaultValue": "[if(equals(parameters(\u0027privateEndpointType\u0027), \u0027none\u0027), \u0027none\u0027, \u0027new\u0027)]", + "allowedValues": [ + "new", + "existing", + "none" + ], + "metadata": { + "description": "Determines whether or not a new VNet should be provisioned." + } + }, + "vnetName": { + "type": "string", + "defaultValue": "[concat(\u0027vn\u0027,uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the VNet" + } + }, + "vnetResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "addressPrefixes": { + "type": "array", + "defaultValue": [ + "10.0.0.0/16" + ], + "metadata": { + "description": "Address prefix of the virtual network" + } + }, + "subnetOption": { + "type": "string", + "defaultValue": "[if(or(not(equals(parameters(\u0027privateEndpointType\u0027), \u0027none\u0027)), equals(parameters(\u0027vnetOption\u0027), \u0027new\u0027)), \u0027new\u0027, \u0027none\u0027)]", + "allowedValues": [ + "new", + "existing", + "none" + ], + "metadata": { + "description": "Determines whether or not a new subnet should be provisioned." + } + }, + "subnetName": { + "type": "string", + "defaultValue": "[concat(\u0027sn\u0027,uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the subnet" + } + }, + "subnetPrefix": { + "type": "string", + "defaultValue": "10.0.0.0/24", + "metadata": { + "description": "Subnet prefix of the virtual network" + } + }, + "adbWorkspace": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "Azure Databrick workspace to be linked to the workspace" + } + }, + "confidential_data": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "false", + "true" + ], + "metadata": { + "description": "Specifies that the Azure Machine Learning workspace holds highly confidential data." + } + }, + "encryption_status": { + "type": "string", + "defaultValue": "Disabled", + "allowedValues": [ + "Enabled", + "Disabled" + ], + "metadata": { + "description": "Specifies if the Azure Machine Learning workspace should be encrypted with customer managed key." + } + }, + "cmk_keyvault": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "Specifies the customer managed keyVault arm id." + } + }, + "resource_cmk_uri": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "Specifies if the customer managed keyvault key uri." + } + }, + "privateEndpointType": { + "type": "string", + "defaultValue": "none", + "allowedValues": [ + "AutoApproval", + "ManualApproval", + "none" + ] + }, + "tagValues": { + "type": "object" + }, + "privateEndpointName": { + "type": "string", + "defaultValue": "pe", + "metadata": { + "description": "Name of the private end point added to the workspace" + } + }, + "privateEndpointResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]", + "metadata": { + "description": "Name of the resource group where the private end point is added to" + } + }, + "imageBuildCompute": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The name of the compute target to use for building environment Docker images with the container registry is behind a VNet." + } + }, + "publicNetworkAccess": { + "type": "string", + "defaultValue": "Enabled", + "allowedValues": [ + "Disabled", + "Enabled" + ], + "metadata": { + "description": "Whether to allow public endpoint connectivity when a workspace is private link enabled." + } + }, + "soft_delete_enabled": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "false", + "true" + ], + "metadata": { + "description": "Whether to create a workspace with soft delete capability" + } + }, + "allow_recover_softdeleted_workspace": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "false", + "true" + ], + "metadata": { + "description": "Whether to allow an existing soft-deleted workspace to be recovered" + } + }, + "encryption_cosmosdb_resourceid": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The Bring-Your-Own cosmosdb account that customer brings to store data" + } + }, + "encryption_storage_resourceid": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The Bring-Your-Own storage account that customer brings to store data" + } + }, + "encryption_search_resourceid": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The Bring-Your-Own search account that customer brings to store data" + } + }, + "identity": { + "type": "object", + "defaultValue": { + "type": "systemAssigned" + }, + "metadata": { + "description": "Managed identities assigned to workspace. If not specificed, SystemAssigned managed identity is the default." + } + }, + "primaryUserAssignedIdentity": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "ARM identifier of primary user assigned managed identity, in case multiple ones are specified. Also the default managed identity for clusterless compute." + } + }, + "managedNetwork": { + "type": "object", + "defaultValue": { + "isolationMode": "Disabled" + }, + "metadata": { + "description": "Managed network settings to be used for the workspace. If not specified, isolation mode Disabled is the default" + } + } + }, + "variables": { + "tenantId": "[subscription().tenantId]", + "storageAccount": "[resourceId(parameters(\u0027storageAccountResourceGroupName\u0027), \u0027Microsoft.Storage/storageAccounts\u0027, parameters(\u0027storageAccountName\u0027))]", + "keyVault": "[resourceId(parameters(\u0027keyVaultResourceGroupName\u0027), \u0027Microsoft.KeyVault/vaults\u0027, parameters(\u0027keyVaultName\u0027))]", + "containerRegistry": "[resourceId(parameters(\u0027containerRegistryResourceGroupName\u0027), \u0027Microsoft.ContainerRegistry/registries\u0027, parameters(\u0027containerRegistryName\u0027))]", + "applicationInsights": "[resourceId(parameters(\u0027applicationInsightsResourceGroupName\u0027), \u0027Microsoft.Insights/components\u0027, parameters(\u0027applicationInsightsName\u0027))]", + "vnet": "[resourceId(parameters(\u0027vnetResourceGroupName\u0027), \u0027Microsoft.Network/virtualNetworks\u0027, parameters(\u0027vnetName\u0027))]", + "subnet": "[resourceId(parameters(\u0027vnetResourceGroupName\u0027), \u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]", + "enablePE": true, + "networkRuleSetBehindVNet": { + "defaultAction": "deny", + "virtualNetworkRules": [ + { + "action": "Allow", + "id": "[variables(\u0027subnet\u0027)]" + } + ] + }, + "privateEndpointSettings": { + "name": "[concat(parameters(\u0027workspaceName\u0027), \u0027-PrivateEndpoint\u0027)]", + "properties": { + "privateLinkServiceId": "[resourceId(\u0027Microsoft.MachineLearningServices/workspaces\u0027, parameters(\u0027workspaceName\u0027))]", + "groupIds": [ + "amlworkspace" + ] + } + }, + "defaultPEConnections": "[array(variables(\u0027privateEndpointSettings\u0027))]", + "privateEndpointDeploymentName": "[concat(\u0027DeployPrivateEndpoint-\u0027, uniqueString(parameters(\u0027privateEndpointName\u0027)))]" + }, + "resources": [ + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027vnetOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Network/virtualNetworks", + "apiVersion": "2019-09-01", + "name": "[parameters(\u0027vnetName\u0027)]", + "location": "[parameters(\u0027location\u0027)]", + "tags": "[parameters(\u0027tagValues\u0027)]", + "properties": { + "addressSpace": { + "addressPrefixes": "[parameters(\u0027addressPrefixes\u0027)]" + }, + "enableDdosProtection": false, + "enableVmProtection": false + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027subnetOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Network/virtualNetworks/subnets", + "apiVersion": "2019-09-01", + "name": "[concat(parameters(\u0027vnetName\u0027), \u0027/\u0027, parameters(\u0027subnetName\u0027))]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks\u0027, parameters(\u0027vnetName\u0027))]" + ], + "properties": { + "addressPrefix": "[parameters(\u0027subnetPrefix\u0027)]", + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "service": "Microsoft.Storage" + }, + { + "service": "Microsoft.KeyVault" + }, + { + "service": "Microsoft.ContainerRegistry" + } + ] + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027storageAccountOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Storage/storageAccounts", + "apiVersion": "2019-04-01", + "name": "[parameters(\u0027storageAccountName\u0027)]", + "tags": "[parameters(\u0027tagValues\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "location": "[parameters(\u0027storageAccountLocation\u0027)]", + "sku": { + "name": "[parameters(\u0027storageAccountType\u0027)]" + }, + "kind": "StorageV2", + "properties": { + "encryption": { + "services": { + "blob": { + "enabled": true + }, + "file": { + "enabled": true + } + }, + "keySource": "Microsoft.Storage" + }, + "supportsHttpsTrafficOnly": true, + "allowBlobPublicAccess": false, + "networkAcls": "[if(equals(parameters(\u0027storageAccountBehindVNet\u0027), \u0027true\u0027), variables(\u0027networkRuleSetBehindVNet\u0027), json(\u0027null\u0027))]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027keyVaultOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.KeyVault/vaults", + "apiVersion": "2019-09-01", + "tags": "[parameters(\u0027tagValues\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "name": "[parameters(\u0027keyVaultName\u0027)]", + "location": "[parameters(\u0027keyVaultLocation\u0027)]", + "properties": { + "tenantId": "[variables(\u0027tenantId\u0027)]", + "sku": { + "name": "standard", + "family": "A" + }, + "accessPolicies": [], + "networkAcls": "[if(equals(parameters(\u0027keyVaultBehindVNet\u0027), \u0027true\u0027), variables(\u0027networkRuleSetBehindVNet\u0027), json(\u0027null\u0027))]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027containerRegistryOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.ContainerRegistry/registries", + "apiVersion": "2019-05-01", + "tags": "[parameters(\u0027tagValues\u0027)]", + "name": "[parameters(\u0027containerRegistryName\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "location": "[parameters(\u0027containerRegistryLocation\u0027)]", + "sku": { + "name": "[parameters(\u0027containerRegistrySku\u0027)]" + }, + "properties": { + "adminUserEnabled": true, + "networkRuleSet": "[if(equals(parameters(\u0027containerRegistryBehindVNet\u0027), \u0027true\u0027), variables(\u0027networkRuleSetBehindVNet\u0027), json(\u0027null\u0027))]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027applicationInsightsOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Insights/components", + "tags": "[parameters(\u0027tagValues\u0027)]", + "apiVersion": "2020-02-02-preview", + "name": "[parameters(\u0027applicationInsightsName\u0027)]", + "location": "[if(or(equals(toLower(parameters(\u0027applicationInsightsLocation\u0027)),\u0027westcentralus\u0027), equals(toLower(parameters(\u0027applicationInsightsLocation\u0027)),\u0027eastus2euap\u0027), equals(toLower(parameters(\u0027applicationInsightsLocation\u0027)),\u0027centraluseuap\u0027)),\u0027southcentralus\u0027, parameters(\u0027applicationInsightsLocation\u0027))]", + "kind": "web", + "properties": { + "Application_Type": "web", + "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-southcentralus" + } + }, + { + "condition": "[variables(\u0027enablePE\u0027)]", + "type": "Microsoft.MachineLearningServices/workspaces", + "apiVersion": "2022-12-01-preview", + "tags": "[parameters(\u0027tagValues\u0027)]", + "name": "[parameters(\u0027workspaceName\u0027)]", + "location": "[parameters(\u0027location\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Storage/storageAccounts\u0027, parameters(\u0027storageAccountName\u0027))]", + "[resourceId(\u0027Microsoft.KeyVault/vaults\u0027, parameters(\u0027keyVaultName\u0027))]", + "[resourceId(\u0027Microsoft.Insights/components\u0027, parameters(\u0027applicationInsightsName\u0027))]", + "[resourceId(\u0027Microsoft.ContainerRegistry/registries\u0027, parameters(\u0027containerRegistryName\u0027))]" + ], + "identity": "[parameters(\u0027identity\u0027)]", + "properties": { + "friendlyName": "[parameters(\u0027friendlyName\u0027)]", + "description": "[parameters(\u0027description\u0027)]", + "storageAccount": "[variables(\u0027storageAccount\u0027)]", + "keyVault": "[variables(\u0027keyVault\u0027)]", + "applicationInsights": "[variables(\u0027applicationInsights\u0027)]", + "containerRegistry": "[if(not(equals(parameters(\u0027containerRegistryOption\u0027), \u0027none\u0027)), variables(\u0027containerRegistry\u0027), json(\u0027null\u0027))]", + "hbiWorkspace": "[parameters(\u0027confidential_data\u0027)]", + "imageBuildCompute": "[parameters(\u0027imageBuildCompute\u0027)]", + "publicNetworkAccess": "[parameters(\u0027publicNetworkAccess\u0027)]", + "softDeleteEnabled": "[parameters(\u0027soft_delete_enabled\u0027)]", + "allowRecoverSoftDeletedWorkspace": "[parameters(\u0027allow_recover_softdeleted_workspace\u0027)]", + "encryption": { + "status": "[parameters(\u0027encryption_status\u0027)]", + "keyVaultProperties": { + "keyVaultArmId": "[parameters(\u0027cmk_keyvault\u0027)]", + "keyIdentifier": "[parameters(\u0027resource_cmk_uri\u0027)]" + }, + "cosmosDbArmId": "[parameters(\u0027encryption_cosmosdb_resourceid\u0027)]", + "storageAccountArmId": "[parameters(\u0027encryption_storage_resourceid\u0027)]", + "SearchAccountArmId": "[parameters(\u0027encryption_search_resourceid\u0027)]" + }, + "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]", + "managedNetwork": "[parameters(\u0027managedNetwork\u0027)]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), not(equals(parameters(\u0027privateEndpointType\u0027), \u0027none\u0027)))]", + "type": "Microsoft.Resources/deployments", + "apiVersion": "2020-06-01", + "name": "[variables(\u0027privateEndpointDeploymentName\u0027)]", + "resourceGroup": "[parameters(\u0027privateEndpointResourceGroupName\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.MachineLearningServices/workspaces\u0027, parameters(\u0027workspaceName\u0027))]", + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [ + { + "apiVersion": "2020-06-01", + "name": "[parameters(\u0027privateEndpointName\u0027)]", + "type": "Microsoft.Network/privateEndpoints", + "location": "[parameters(\u0027location\u0027)]", + "tags": "[parameters(\u0027tagValues\u0027)]", + "properties": { + "privateLinkServiceConnections": "[if(equals(parameters(\u0027privateEndpointType\u0027), \u0027AutoApproval\u0027), variables(\u0027defaultPEConnections\u0027), json(\u0027null\u0027))]", + "manualPrivateLinkServiceConnections": "[if(equals(parameters(\u0027privateEndpointType\u0027), \u0027ManualApproval\u0027), variables(\u0027defaultPEConnections\u0027), json(\u0027null\u0027))]", + "subnet": { + "id": "[variables(\u0027subnet\u0027)]" + } + } + } + ] + } + } + } + ] + }, + "parameters": { + "location": { + "value": "centraluseuap" + }, + "workspaceName": { + "value": "e2etest_test_107835267768_mvnet" + }, + "resourceGroupName": { + "value": "00000" + }, + "description": { + "value": "e2etest_test_107835267768_mvnet description" + }, + "friendlyName": { + "value": "e2etest_test_107835267768_mvnet display name" + }, + "tagValues": { + "value": { + "createdByToolkit": "sdk-v2-1.5.0" + } + }, + "keyVaultOption": { + "value": "new" + }, + "keyVaultName": { + "value": "e2etesttkeyvault26bfe970" + }, + "keyVaultResourceGroupName": { + "value": "00000" + }, + "storageAccountOption": { + "value": "new" + }, + "storageAccountName": { + "value": "e2etesttstorageb531f7932" + }, + "storageAccountResourceGroupName": { + "value": "00000" + }, + "applicationInsightsOption": { + "value": "new" + }, + "applicationInsightsName": { + "value": "e2etesttinsightscd822d4f" + }, + "applicationInsightsResourceGroupName": { + "value": "00000" + }, + "containerRegistryOption": { + "value": "none" + }, + "containerRegistryName": { + "value": "name" + }, + "containerRegistryResourceGroupName": { + "value": "" + }, + "encryption_status": { + "value": "Disabled" + }, + "cmk_keyvault": { + "value": "" + }, + "resource_cmk_uri": { + "value": "" + }, + "privateEndpointName": { + "value": "name" + }, + "subnetOption": { + "value": "existing" + }, + "subnetName": { + "value": "default" + }, + "vnetOption": { + "value": "existing" + }, + "vnetName": { + "value": "name" + }, + "vnetResourceGroupName": { + "value": "name" + }, + "privateEndpointType": { + "value": "none" + }, + "privateEndpointResourceGroupName": { + "value": "name" + }, + "confidential_data": { + "value": "false" + }, + "imageBuildCompute": { + "value": "" + }, + "publicNetworkAccess": { + "value": "Enabled" + }, + "soft_delete_enabled": { + "value": "false" + }, + "allow_recover_softdeleted_workspace": { + "value": "false" + }, + "encryption_cosmosdb_resourceid": { + "value": "" + }, + "encryption_storage_resourceid": { + "value": "" + }, + "encryption_search_resourceid": { + "value": "" + }, + "identity": { + "value": { + "type": "SystemAssigned" + } + }, + "primaryUserAssignedIdentity": { + "value": "" + }, + "managedNetwork": { + "value": { + "isolationMode": "AllowOnlyApprovedOutbound", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "category": "UserDefined", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + } + }, + "my-storage": { + "type": "PrivateEndpoint", + "category": "UserDefined", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + } + }, + "pytorch": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.pytorch.org" + } + } + } + } + }, + "mode": "incremental" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "Cache-Control": "no-cache", + "Content-Length": "8562", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bd4bc77b-dec0-4a9f-8116-bfecf5fdecee", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "WESTUS:20230214T020133Z:bd4bc77b-dec0-4a9f-8116-bfecf5fdecee" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211", + "name": "e2etest_test_107835267768_mvnet-9808211", + "type": "Microsoft.Resources/deployments", + "properties": { + "templateHash": "4984303229931942319", + "parameters": { + "workspaceName": { + "type": "String", + "value": "e2etest_test_107835267768_mvnet" + }, + "description": { + "type": "String", + "value": "e2etest_test_107835267768_mvnet description" + }, + "friendlyName": { + "type": "String", + "value": "e2etest_test_107835267768_mvnet display name" + }, + "location": { + "type": "String", + "value": "centraluseuap" + }, + "resourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountOption": { + "type": "String", + "value": "new" + }, + "storageAccountName": { + "type": "String", + "value": "e2etesttstorageb531f7932" + }, + "storageAccountType": { + "type": "String", + "value": "Standard_LRS" + }, + "storageAccountBehindVNet": { + "type": "String", + "value": "false" + }, + "storageAccountResourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountLocation": { + "type": "String", + "value": "centraluseuap" + }, + "keyVaultOption": { + "type": "String", + "value": "new" + }, + "keyVaultName": { + "type": "String", + "value": "e2etesttkeyvault26bfe970" + }, + "keyVaultBehindVNet": { + "type": "String", + "value": "false" + }, + "keyVaultResourceGroupName": { + "type": "String", + "value": "00000" + }, + "keyVaultLocation": { + "type": "String", + "value": "centraluseuap" + }, + "applicationInsightsOption": { + "type": "String", + "value": "new" + }, + "applicationInsightsName": { + "type": "String", + "value": "e2etesttinsightscd822d4f" + }, + "applicationInsightsResourceGroupName": { + "type": "String", + "value": "00000" + }, + "applicationInsightsLocation": { + "type": "String", + "value": "centraluseuap" + }, + "containerRegistryOption": { + "type": "String", + "value": "none" + }, + "containerRegistryName": { + "type": "String", + "value": "name" + }, + "containerRegistrySku": { + "type": "String", + "value": "Standard" + }, + "containerRegistryResourceGroupName": { + "type": "String", + "value": "" + }, + "containerRegistryBehindVNet": { + "type": "String", + "value": "false" + }, + "containerRegistryLocation": { + "type": "String", + "value": "centraluseuap" + }, + "vnetOption": { + "type": "String", + "value": "existing" + }, + "vnetName": { + "type": "String", + "value": "name" + }, + "vnetResourceGroupName": { + "type": "String", + "value": "name" + }, + "addressPrefixes": { + "type": "Array", + "value": [ + "10.0.0.0/16" + ] + }, + "subnetOption": { + "type": "String", + "value": "existing" + }, + "subnetName": { + "type": "String", + "value": "default" + }, + "subnetPrefix": { + "type": "String", + "value": "10.0.0.0/24" + }, + "adbWorkspace": { + "type": "String", + "value": "" + }, + "confidential_data": { + "type": "String", + "value": "false" + }, + "encryption_status": { + "type": "String", + "value": "Disabled" + }, + "cmk_keyvault": { + "type": "String", + "value": "" + }, + "resource_cmk_uri": { + "type": "String", + "value": "" + }, + "privateEndpointType": { + "type": "String", + "value": "none" + }, + "tagValues": { + "type": "Object", + "value": { + "createdByToolkit": "sdk-v2-1.5.0" + } + }, + "privateEndpointName": { + "type": "String", + "value": "name" + }, + "privateEndpointResourceGroupName": { + "type": "String", + "value": "name" + }, + "imageBuildCompute": { + "type": "String", + "value": "" + }, + "publicNetworkAccess": { + "type": "String", + "value": "Enabled" + }, + "soft_delete_enabled": { + "type": "String", + "value": "false" + }, + "allow_recover_softdeleted_workspace": { + "type": "String", + "value": "false" + }, + "encryption_cosmosdb_resourceid": { + "type": "String", + "value": "" + }, + "encryption_storage_resourceid": { + "type": "String", + "value": "" + }, + "encryption_search_resourceid": { + "type": "String", + "value": "" + }, + "identity": { + "type": "Object", + "value": { + "type": "SystemAssigned" + } + }, + "primaryUserAssignedIdentity": { + "type": "String", + "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "AllowOnlyApprovedOutbound", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "category": "UserDefined", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + } + }, + "my-storage": { + "type": "PrivateEndpoint", + "category": "UserDefined", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + } + }, + "pytorch": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.pytorch.org" + } + } + } + } + }, + "mode": "Incremental", + "provisioningState": "Accepted", + "timestamp": "2023-02-14T02:01:33.5625941Z", + "duration": "PT0.0002864S", + "correlationId": "bd4bc77b-dec0-4a9f-8116-bfecf5fdecee", + "providers": [ + { + "namespace": "Microsoft.Storage", + "resourceTypes": [ + { + "resourceType": "storageAccounts", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.KeyVault", + "resourceTypes": [ + { + "resourceType": "vaults", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.Insights", + "resourceTypes": [ + { + "resourceType": "components", + "locations": [ + "southcentralus" + ] + } + ] + }, + { + "namespace": "Microsoft.MachineLearningServices", + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "centraluseuap" + ] + } + ] + } + ], + "dependencies": [ + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name", + "resourceType": "Microsoft.Network/virtualNetworks", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/name/providers/Microsoft.Resources/deployments/DeployPrivateEndpoint-q2xi2ah3t47py", + "resourceType": "Microsoft.Resources/deployments", + "resourceName": "DeployPrivateEndpoint-q2xi2ah3t47py" + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "21", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b45631fd-87b3-4ef9-9fce-75b289fcf501", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-routing-request-id": "WESTUS:20230214T020134Z:b45631fd-87b3-4ef9-9fce-75b289fcf501" + }, + "ResponseBody": { + "status": "Accepted" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2086", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7b590866-9b84-41bc-b886-bea37d40d5ed", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-routing-request-id": "WESTUS:20230214T020139Z:7b590866-9b84-41bc-b886-bea37d40d5ed" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:38.1460069Z", + "duration": "PT3.9967948S", + "trackingId": "c082019c-1552-462f-bfc4-a66d2f54fedf", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:36.8839057Z", + "duration": "PT2.6803531S", + "trackingId": "02f74952-7ae5-49ea-a9d8-8a424bcb1eb9", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4952a190-f086-4395-bce2-bba93d624092", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-routing-request-id": "WESTUS:20230214T020139Z:4952a190-f086-4395-bce2-bba93d624092" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2086", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f95766d2-375b-4275-965a-cc27bc76904b", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-routing-request-id": "WESTUS:20230214T020144Z:f95766d2-375b-4275-965a-cc27bc76904b" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:38.1460069Z", + "duration": "PT3.9967948S", + "trackingId": "c082019c-1552-462f-bfc4-a66d2f54fedf", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:36.8839057Z", + "duration": "PT2.6803531S", + "trackingId": "02f74952-7ae5-49ea-a9d8-8a424bcb1eb9", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "af75e8da-8440-484c-9f0e-2c8c1b6bf8c9", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "WESTUS:20230214T020144Z:af75e8da-8440-484c-9f0e-2c8c1b6bf8c9" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1541b653-e75b-4bf9-8f1e-6a8d6f04d4e0", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-routing-request-id": "WESTUS:20230214T020149Z:1541b653-e75b-4bf9-8f1e-6a8d6f04d4e0" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2086", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f511db4a-d8c8-47a3-ada9-c71bcc45fb8b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "WESTUS:20230214T020149Z:f511db4a-d8c8-47a3-ada9-c71bcc45fb8b" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:38.1460069Z", + "duration": "PT3.9967948S", + "trackingId": "c082019c-1552-462f-bfc4-a66d2f54fedf", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:36.8839057Z", + "duration": "PT2.6803531S", + "trackingId": "02f74952-7ae5-49ea-a9d8-8a424bcb1eb9", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3da50a7c-7c1e-442a-99a9-b7b873de6d18", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "WESTUS:20230214T020154Z:3da50a7c-7c1e-442a-99a9-b7b873de6d18" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2088", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cefab56b-6cda-4c1b-b2c0-5d8ad13fb027", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-routing-request-id": "WESTUS:20230214T020155Z:cefab56b-6cda-4c1b-b2c0-5d8ad13fb027" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:38.1460069Z", + "duration": "PT3.9967948S", + "trackingId": "c082019c-1552-462f-bfc4-a66d2f54fedf", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:52.4835006Z", + "duration": "PT18.279948S", + "trackingId": "bbc9bc0c-125e-4559-b6a6-9489b102e969", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/3a782421-0dbe-4ade-a3c8-ece5115ecc0f?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-006a5043344c5a6a6da3b82e3624b6a9-de9bd749714f5d3f-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2euap-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f75c40e4-3a93-4476-9965-a609bf4de7c0", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020156Z:f75c40e4-3a93-4476-9965-a609bf4de7c0", + "x-request-time": "0.021" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:01:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f0df9f68-33ee-40ca-a61b-aea75e8ff421", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-routing-request-id": "WESTUS:20230214T020200Z:f0df9f68-33ee-40ca-a61b-aea75e8ff421" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2824", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ffa2573b-ad10-4701-8102-1c6a41e5d9bc", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "WESTUS:20230214T020200Z:ffa2573b-ad10-4701-8102-1c6a41e5d9bc" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/46AC009837621187", + "operationId": "46AC009837621187", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:58.0226635Z", + "duration": "PT2.2390098S", + "trackingId": "11ebe9cc-a57c-4067-b967-d8dbd3b7983d", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:55.6683387Z", + "duration": "PT21.5191266S", + "trackingId": "b35b329e-f000-49d0-9cf8-fd9f34501b49", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:52.4835006Z", + "duration": "PT18.279948S", + "trackingId": "bbc9bc0c-125e-4559-b6a6-9489b102e969", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d8fa15f6-6e40-492a-a0a6-a46173f82a6f", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "WESTUS:20230214T020205Z:d8fa15f6-6e40-492a-a0a6-a46173f82a6f" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2824", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "62deb202-83f5-41fa-a196-1701fdd25fa4", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "WESTUS:20230214T020205Z:62deb202-83f5-41fa-a196-1701fdd25fa4" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/46AC009837621187", + "operationId": "46AC009837621187", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:58.0226635Z", + "duration": "PT2.2390098S", + "trackingId": "11ebe9cc-a57c-4067-b967-d8dbd3b7983d", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:55.6683387Z", + "duration": "PT21.5191266S", + "trackingId": "b35b329e-f000-49d0-9cf8-fd9f34501b49", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:52.4835006Z", + "duration": "PT18.279948S", + "trackingId": "bbc9bc0c-125e-4559-b6a6-9489b102e969", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "89749d5f-54cf-41cd-a983-d67db4e39a31", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "WESTUS:20230214T020210Z:89749d5f-54cf-41cd-a983-d67db4e39a31" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2824", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "892834a4-2200-4967-9942-c2bfe1f0eac7", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "WESTUS:20230214T020211Z:892834a4-2200-4967-9942-c2bfe1f0eac7" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/46AC009837621187", + "operationId": "46AC009837621187", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T02:01:58.0226635Z", + "duration": "PT2.2390098S", + "trackingId": "11ebe9cc-a57c-4067-b967-d8dbd3b7983d", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:55.6683387Z", + "duration": "PT21.5191266S", + "trackingId": "b35b329e-f000-49d0-9cf8-fd9f34501b49", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:52.4835006Z", + "duration": "PT18.279948S", + "trackingId": "bbc9bc0c-125e-4559-b6a6-9489b102e969", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c7b8f3c3-3d9f-4d21-8557-a4aabd4f46f1", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "WESTUS:20230214T020215Z:c7b8f3c3-3d9f-4d21-8557-a4aabd4f46f1" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "3288", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b1fcccf8-9dfa-47f8-b7c1-3b70d5715ad4", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "WESTUS:20230214T020216Z:b1fcccf8-9dfa-47f8-b7c1-3b70d5715ad4" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/46AC009837621187", + "operationId": "46AC009837621187", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:02:15.670642Z", + "duration": "PT19.8869883S", + "trackingId": "c3f1443f-69ad-4410-bd2f-a26f81a434b3", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:55.6683387Z", + "duration": "PT21.5191266S", + "trackingId": "b35b329e-f000-49d0-9cf8-fd9f34501b49", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:52.4835006Z", + "duration": "PT18.279948S", + "trackingId": "bbc9bc0c-125e-4559-b6a6-9489b102e969", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/08585252667935573910", + "operationId": "08585252667935573910", + "properties": { + "provisioningOperation": "EvaluateDeploymentOutput", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:02:15.9151614Z", + "duration": "PT20.1315077S", + "trackingId": "80729ce9-1258-4ad7-b330-2d7bd1cf514d", + "statusCode": "OK" + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operationStatuses/08585252667935573910?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "22", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "61fc4368-c6f9-415e-b640-a844411d9be0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "WESTUS:20230214T020221Z:61fc4368-c6f9-415e-b640-a844411d9be0" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "9182", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7f99a2e1-654f-49e2-a2c2-7d4a5a80c921", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "WESTUS:20230214T020221Z:7f99a2e1-654f-49e2-a2c2-7d4a5a80c921" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211", + "name": "e2etest_test_107835267768_mvnet-9808211", + "type": "Microsoft.Resources/deployments", + "properties": { + "templateHash": "4984303229931942319", + "parameters": { + "workspaceName": { + "type": "String", + "value": "e2etest_test_107835267768_mvnet" + }, + "description": { + "type": "String", + "value": "e2etest_test_107835267768_mvnet description" + }, + "friendlyName": { + "type": "String", + "value": "e2etest_test_107835267768_mvnet display name" + }, + "location": { + "type": "String", + "value": "centraluseuap" + }, + "resourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountOption": { + "type": "String", + "value": "new" + }, + "storageAccountName": { + "type": "String", + "value": "e2etesttstorageb531f7932" + }, + "storageAccountType": { + "type": "String", + "value": "Standard_LRS" + }, + "storageAccountBehindVNet": { + "type": "String", + "value": "false" + }, + "storageAccountResourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountLocation": { + "type": "String", + "value": "centraluseuap" + }, + "keyVaultOption": { + "type": "String", + "value": "new" + }, + "keyVaultName": { + "type": "String", + "value": "e2etesttkeyvault26bfe970" + }, + "keyVaultBehindVNet": { + "type": "String", + "value": "false" + }, + "keyVaultResourceGroupName": { + "type": "String", + "value": "00000" + }, + "keyVaultLocation": { + "type": "String", + "value": "centraluseuap" + }, + "applicationInsightsOption": { + "type": "String", + "value": "new" + }, + "applicationInsightsName": { + "type": "String", + "value": "e2etesttinsightscd822d4f" + }, + "applicationInsightsResourceGroupName": { + "type": "String", + "value": "00000" + }, + "applicationInsightsLocation": { + "type": "String", + "value": "centraluseuap" + }, + "containerRegistryOption": { + "type": "String", + "value": "none" + }, + "containerRegistryName": { + "type": "String", + "value": "name" + }, + "containerRegistrySku": { + "type": "String", + "value": "Standard" + }, + "containerRegistryResourceGroupName": { + "type": "String", + "value": "" + }, + "containerRegistryBehindVNet": { + "type": "String", + "value": "false" + }, + "containerRegistryLocation": { + "type": "String", + "value": "centraluseuap" + }, + "vnetOption": { + "type": "String", + "value": "existing" + }, + "vnetName": { + "type": "String", + "value": "name" + }, + "vnetResourceGroupName": { + "type": "String", + "value": "name" + }, + "addressPrefixes": { + "type": "Array", + "value": [ + "10.0.0.0/16" + ] + }, + "subnetOption": { + "type": "String", + "value": "existing" + }, + "subnetName": { + "type": "String", + "value": "default" + }, + "subnetPrefix": { + "type": "String", + "value": "10.0.0.0/24" + }, + "adbWorkspace": { + "type": "String", + "value": "" + }, + "confidential_data": { + "type": "String", + "value": "false" + }, + "encryption_status": { + "type": "String", + "value": "Disabled" + }, + "cmk_keyvault": { + "type": "String", + "value": "" + }, + "resource_cmk_uri": { + "type": "String", + "value": "" + }, + "privateEndpointType": { + "type": "String", + "value": "none" + }, + "tagValues": { + "type": "Object", + "value": { + "createdByToolkit": "sdk-v2-1.5.0" + } + }, + "privateEndpointName": { + "type": "String", + "value": "name" + }, + "privateEndpointResourceGroupName": { + "type": "String", + "value": "name" + }, + "imageBuildCompute": { + "type": "String", + "value": "" + }, + "publicNetworkAccess": { + "type": "String", + "value": "Enabled" + }, + "soft_delete_enabled": { + "type": "String", + "value": "false" + }, + "allow_recover_softdeleted_workspace": { + "type": "String", + "value": "false" + }, + "encryption_cosmosdb_resourceid": { + "type": "String", + "value": "" + }, + "encryption_storage_resourceid": { + "type": "String", + "value": "" + }, + "encryption_search_resourceid": { + "type": "String", + "value": "" + }, + "identity": { + "type": "Object", + "value": { + "type": "SystemAssigned" + } + }, + "primaryUserAssignedIdentity": { + "type": "String", + "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "AllowOnlyApprovedOutbound", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "category": "UserDefined", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + } + }, + "my-storage": { + "type": "PrivateEndpoint", + "category": "UserDefined", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + } + }, + "pytorch": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.pytorch.org" + } + } + } + } + }, + "mode": "Incremental", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:02:15.9409605Z", + "duration": "PT42.3786528S", + "correlationId": "bd4bc77b-dec0-4a9f-8116-bfecf5fdecee", + "providers": [ + { + "namespace": "Microsoft.Storage", + "resourceTypes": [ + { + "resourceType": "storageAccounts", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.KeyVault", + "resourceTypes": [ + { + "resourceType": "vaults", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.Insights", + "resourceTypes": [ + { + "resourceType": "components", + "locations": [ + "southcentralus" + ] + } + ] + }, + { + "namespace": "Microsoft.MachineLearningServices", + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "centraluseuap" + ] + } + ] + } + ], + "dependencies": [ + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name", + "resourceType": "Microsoft.Network/virtualNetworks", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/name/providers/Microsoft.Resources/deployments/DeployPrivateEndpoint-q2xi2ah3t47py", + "resourceType": "Microsoft.Resources/deployments", + "resourceName": "DeployPrivateEndpoint-q2xi2ah3t47py" + } + ], + "outputResources": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932" + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "3288", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e091169a-0e84-4ce0-94c2-20f69e5cf606", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "WESTUS:20230214T020221Z:e091169a-0e84-4ce0-94c2-20f69e5cf606" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/46AC009837621187", + "operationId": "46AC009837621187", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:02:15.670642Z", + "duration": "PT19.8869883S", + "trackingId": "c3f1443f-69ad-4410-bd2f-a26f81a434b3", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:55.6683387Z", + "duration": "PT21.5191266S", + "trackingId": "b35b329e-f000-49d0-9cf8-fd9f34501b49", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:52.4835006Z", + "duration": "PT18.279948S", + "trackingId": "bbc9bc0c-125e-4559-b6a6-9489b102e969", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/08585252667935573910", + "operationId": "08585252667935573910", + "properties": { + "provisioningOperation": "EvaluateDeploymentOutput", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:02:15.9151614Z", + "duration": "PT20.1315077S", + "trackingId": "80729ce9-1258-4ad7-b330-2d7bd1cf514d", + "statusCode": "OK" + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_107835267768_mvnet-9808211/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "3288", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "941d0a05-ef89-461d-93a3-1606ce24cacc", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "WESTUS:20230214T020222Z:941d0a05-ef89-461d-93a3-1606ce24cacc" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/46AC009837621187", + "operationId": "46AC009837621187", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:02:15.670642Z", + "duration": "PT19.8869883S", + "trackingId": "c3f1443f-69ad-4410-bd2f-a26f81a434b3", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_107835267768_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/65E47DEACE0860F0", + "operationId": "65E47DEACE0860F0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:55.6683387Z", + "duration": "PT21.5191266S", + "trackingId": "b35b329e-f000-49d0-9cf8-fd9f34501b49", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorageb531f7932" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/667EDD2BE5A9C5C0", + "operationId": "667EDD2BE5A9C5C0", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:52.4835006Z", + "duration": "PT18.279948S", + "trackingId": "bbc9bc0c-125e-4559-b6a6-9489b102e969", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault26bfe970", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault26bfe970" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/DB04996D1F2E522B", + "operationId": "DB04996D1F2E522B", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:01:36.7350258Z", + "duration": "PT2.5858137S", + "trackingId": "1b5f2bac-41b6-4dab-b610-1be00ee0c65f", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsightscd822d4f", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsightscd822d4f" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_107835267768_mvnet-9808211/operations/08585252667935573910", + "operationId": "08585252667935573910", + "properties": { + "provisioningOperation": "EvaluateDeploymentOutput", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T02:02:15.9151614Z", + "duration": "PT20.1315077S", + "trackingId": "80729ce9-1258-4ad7-b330-2d7bd1cf514d", + "statusCode": "OK" + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-490ca10ae0c0120ca11ba1733df402b7-6796eb376f206dff-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d72e0e21-b14e-45c7-96f6-075d14d876a3", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020222Z:d72e0e21-b14e-45c7-96f6-075d14d876a3", + "x-request-time": "0.020" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "name": "e2etest_test_107835267768_mvnet", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "centraluseuap", + "tags": { + "createdByToolkit": "sdk-v2-1.5.0" + }, + "etag": null, + "properties": { + "friendlyName": "e2etest_test_107835267768_mvnet display name", + "description": "e2etest_test_107835267768_mvnet description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault26bfe970", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightscd822d4f", + "hbiWorkspace": false, + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "imageBuildCompute": null, + "provisioningState": "Succeeded", + "managedNetwork": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "98b769ca-02b8-4858-84bc-8d0199154a5f", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault26bfe970_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault26bfe970", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorageb531f7932_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorageb531f7932_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + }, + "v1LegacyMode": false, + "softDeleteEnabled": false, + "containerRegistry": "", + "creationTime": "2023-02-14T02:01:56.5955600Z", + "notebookInfo": { + "resourceId": "dc397e66cb214567abcab963d15acdf1", + "fqdn": "ml-e2etestte-centraluseuap-98b769ca-02b8-4858-84bc-8d0199154a5f.centraluseuap.notebooks.azure.net", + "isPrivateLinkEnabled": false, + "notebookPreparationError": null + }, + "storageHnsEnabled": false, + "workspaceId": "98b769ca-02b8-4858-84bc-8d0199154a5f", + "linkedModelInventoryArmId": null, + "privateLinkCount": 0, + "publicNetworkAccess": "Enabled", + "discoveryUrl": "https://master.api.azureml-test.ms/discovery", + "mlFlowTrackingUri": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "sdkTelemetryAppInsightsKey": "efed27c9-e6dc-4190-9989-79f9b7f3a4b7", + "sasGetterUri": "", + "enableDataIsolation": false + }, + "identity": { + "type": "SystemAssigned", + "principalId": "96c34e67-46c0-4cd6-a133-a68584f56079", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + }, + "kind": "Default", + "sku": { + "name": "Basic", + "tier": "Basic" + }, + "systemData": { + "createdAt": "2023-02-14T02:01:56.59556Z", + "createdBy": "joharrington@microsoft.com", + "createdByType": "User", + "lastModifiedAt": "2023-02-14T02:01:56.59556Z", + "lastModifiedBy": "joharrington@microsoft.com", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-2c6d399e64a0fd583cc0098c47a532d1-5d11cb3c22107d61-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ffebaa62-8ce4-4802-aba3-763c47251a78", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020223Z:ffebaa62-8ce4-4802-aba3-763c47251a78", + "x-request-time": "0.023" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "name": "e2etest_test_107835267768_mvnet", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "centraluseuap", + "tags": { + "createdByToolkit": "sdk-v2-1.5.0" + }, + "etag": null, + "properties": { + "friendlyName": "e2etest_test_107835267768_mvnet display name", + "description": "e2etest_test_107835267768_mvnet description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault26bfe970", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightscd822d4f", + "hbiWorkspace": false, + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "imageBuildCompute": null, + "provisioningState": "Succeeded", + "managedNetwork": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "98b769ca-02b8-4858-84bc-8d0199154a5f", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault26bfe970_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault26bfe970", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorageb531f7932_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorageb531f7932_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + }, + "v1LegacyMode": false, + "softDeleteEnabled": false, + "containerRegistry": "", + "creationTime": "2023-02-14T02:01:56.5955600Z", + "notebookInfo": { + "resourceId": "dc397e66cb214567abcab963d15acdf1", + "fqdn": "ml-e2etestte-centraluseuap-98b769ca-02b8-4858-84bc-8d0199154a5f.centraluseuap.notebooks.azure.net", + "isPrivateLinkEnabled": false, + "notebookPreparationError": null + }, + "storageHnsEnabled": false, + "workspaceId": "98b769ca-02b8-4858-84bc-8d0199154a5f", + "linkedModelInventoryArmId": null, + "privateLinkCount": 0, + "publicNetworkAccess": "Enabled", + "discoveryUrl": "https://master.api.azureml-test.ms/discovery", + "mlFlowTrackingUri": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "sdkTelemetryAppInsightsKey": "e31c22bb-e424-4992-a495-6519750e273a", + "sasGetterUri": "", + "enableDataIsolation": false + }, + "identity": { + "type": "SystemAssigned", + "principalId": "96c34e67-46c0-4cd6-a133-a68584f56079", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + }, + "kind": "Default", + "sku": { + "name": "Basic", + "tier": "Basic" + }, + "systemData": { + "createdAt": "2023-02-14T02:01:56.59556Z", + "createdBy": "joharrington@microsoft.com", + "createdByType": "User", + "lastModifiedAt": "2023-02-14T02:01:56.59556Z", + "lastModifiedBy": "joharrington@microsoft.com", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ab620abb98a48268ae8e936fa8a7785f-7816d6643b4d915c-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0c590cb8-12fc-425a-a243-0c5a9e0672bb", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020223Z:0c590cb8-12fc-425a-a243-0c5a9e0672bb", + "x-request-time": "0.025" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "name": "e2etest_test_107835267768_mvnet", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "centraluseuap", + "tags": { + "createdByToolkit": "sdk-v2-1.5.0" + }, + "etag": null, + "properties": { + "friendlyName": "e2etest_test_107835267768_mvnet display name", + "description": "e2etest_test_107835267768_mvnet description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault26bfe970", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightscd822d4f", + "hbiWorkspace": false, + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "imageBuildCompute": null, + "provisioningState": "Succeeded", + "managedNetwork": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "98b769ca-02b8-4858-84bc-8d0199154a5f", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault26bfe970_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault26bfe970", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorageb531f7932_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorageb531f7932_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + }, + "v1LegacyMode": false, + "softDeleteEnabled": false, + "containerRegistry": "", + "creationTime": "2023-02-14T02:01:56.5955600Z", + "notebookInfo": { + "resourceId": "dc397e66cb214567abcab963d15acdf1", + "fqdn": "ml-e2etestte-centraluseuap-98b769ca-02b8-4858-84bc-8d0199154a5f.centraluseuap.notebooks.azure.net", + "isPrivateLinkEnabled": false, + "notebookPreparationError": null + }, + "storageHnsEnabled": false, + "workspaceId": "98b769ca-02b8-4858-84bc-8d0199154a5f", + "linkedModelInventoryArmId": null, + "privateLinkCount": 0, + "publicNetworkAccess": "Enabled", + "discoveryUrl": "https://master.api.azureml-test.ms/discovery", + "mlFlowTrackingUri": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet", + "sdkTelemetryAppInsightsKey": "e31c22bb-e424-4992-a495-6519750e273a", + "sasGetterUri": "", + "enableDataIsolation": false + }, + "identity": { + "type": "SystemAssigned", + "principalId": "96c34e67-46c0-4cd6-a133-a68584f56079", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + }, + "kind": "Default", + "sku": { + "name": "Basic", + "tier": "Basic" + }, + "systemData": { + "createdAt": "2023-02-14T02:01:56.59556Z", + "createdBy": "joharrington@microsoft.com", + "createdByType": "User", + "lastModifiedAt": "2023-02-14T02:01:56.59556Z", + "lastModifiedBy": "joharrington@microsoft.com", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/3a782421-0dbe-4ade-a3c8-ece5115ecc0f?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Server-Timing": "traceparent;desc=\u002200-479a53c292d185b9d8e8ef3a2c9c5231-5cfd68e2bea81ef5-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2euap-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6a55f27e-6b26-423e-9024-ea4c77b618ff", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020226Z:6a55f27e-6b26-423e-9024-ea4c77b618ff", + "x-request-time": "0.025" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsightscd822d4f?api-version=2015-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Expose-Headers": "Request-Context", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 02:02:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "42d7617d-d099-4a51-969e-bd89ec080ecc", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "WESTUS:20230214T020229Z:42d7617d-d099-4a51-969e-bd89ec080ecc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorageb531f7932?api-version=2019-06-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Content-Type": "text/plain; charset=utf-8", + "Date": "Tue, 14 Feb 2023 02:02: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", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8a128c2a-20b2-4133-b918-061f9486d546", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-routing-request-id": "WESTUS:20230214T020234Z:8a128c2a-20b2-4133-b918-061f9486d546" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault26bfe970?api-version=2019-09-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 02:02:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ab70005e-c418-4758-ac56-793f4bfb7e77", + "x-ms-keyvault-service-version": "1.5.666.2", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "WESTUS:20230214T020238Z:ab70005e-c418-4758-ac56-793f4bfb7e77", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_107835267768_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/ce01079c-2318-49e7-a6a4-95fc4b3ac6a3?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 02:02:38 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/ce01079c-2318-49e7-a6a4-95fc4b3ac6a3?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0440a8f3-99c2-4bba-ab3c-a35af8e9ceb9", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T020239Z:0440a8f3-99c2-4bba-ab3c-a35af8e9ceb9", + "x-request-time": "0.094" + }, + "ResponseBody": null + } + ], + "Variables": { + "deployment_name": "e2etest_test_107835267768_mvnet-9808211", + "insights_name": "e2etesttinsightscd822d4f", + "keyvault_name": "e2etesttkeyvault26bfe970", + "storage_name": "e2etesttstorageb531f7932", + "wps_name": "test_107835267768" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_diagnosis.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_diagnosis.json index 7ecd6e6db6353..c8b2ca9d8cd41 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_diagnosis.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace.pyTestWorkspacetest_workspace_diagnosis.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/diagnose?api-version=2022-10-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/diagnose?api-version=2022-12-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "13", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "value": {} @@ -18,61 +18,61 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:34:43 GMT", + "Date": "Tue, 14 Feb 2023 01:57:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/4eeacf50-3caa-473a-9a91-351116f1af45?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus/workspaceOperationsStatus/d4e73d06-5b9e-417d-9ea2-93efcabb765a?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-westus3-02", + "x-aml-cluster": "vienna-eastus-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc20a182-7d97-430d-aa2b-3047bbc27cf1", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "e2cff727-1361-4522-9c80-605aa293b759", + "x-ms-ratelimit-remaining-subscription-reads": "11967", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063443Z:cc20a182-7d97-430d-aa2b-3047bbc27cf1", - "x-request-time": "0.138" + "x-ms-routing-request-id": "WESTUS:20230214T015707Z:e2cff727-1361-4522-9c80-605aa293b759", + "x-request-time": "0.251" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/4eeacf50-3caa-473a-9a91-351116f1af45?api-version=2022-10-01-preview\u0026type=location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus/workspaceOperationsStatus/d4e73d06-5b9e-417d-9ea2-93efcabb765a?api-version=2022-12-01-preview\u0026type=location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/4eeacf50-3caa-473a-9a91-351116f1af45?api-version=2022-10-01-preview\u0026type=async", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus/workspaceOperationsStatus/d4e73d06-5b9e-417d-9ea2-93efcabb765a?api-version=2022-12-01-preview\u0026type=async", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 31 Jan 2023 06:34:43 GMT", + "Date": "Tue, 14 Feb 2023 01:57:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/4eeacf50-3caa-473a-9a91-351116f1af45?api-version=2022-10-01-preview\u0026type=location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus/workspaceOperationsStatus/d4e73d06-5b9e-417d-9ea2-93efcabb765a?api-version=2022-12-01-preview\u0026type=location", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-westus3-02", + "x-aml-cluster": "vienna-eastus-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ccb2c13-8f65-451b-86db-1a177dd70e9a", - "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-correlation-request-id": "b0bad784-2dc0-4aba-be13-f5fab533ccb4", + "x-ms-ratelimit-remaining-subscription-reads": "11966", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063443Z:9ccb2c13-8f65-451b-86db-1a177dd70e9a", - "x-request-time": "0.026" + "x-ms-routing-request-id": "WESTUS:20230214T015707Z:b0bad784-2dc0-4aba-be13-f5fab533ccb4", + "x-request-time": "0.017" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/workspaceOperationsStatus/7ddd3d3e-ff21-4fbd-a7cb-fb921ccb16ec?api-version=2022-10-01-preview\u0026type=async", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus/workspaceOperationsStatus/d4e73d06-5b9e-417d-9ea2-93efcabb765a?api-version=2022-12-01-preview\u0026type=location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -80,59 +80,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-949bf17cec71711bf080787b8410ef9d-e05cb60e3efdee18-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "647b1fc7-5d76-4139-8d16-592662100de6", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063510Z:647b1fc7-5d76-4139-8d16-592662100de6", - "x-request-time": "0.026" - }, - "ResponseBody": { - "status": "InProgress" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/westus3/workspaceOperationsStatus/4eeacf50-3caa-473a-9a91-351116f1af45?api-version=2022-10-01-preview\u0026type=location", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.4.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.7.13 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 31 Jan 2023 06:35:13 GMT", + "Date": "Tue, 14 Feb 2023 01:57:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-75c4075c1477a7182b288f6fa495c4e3-106ca94c409a5245-00\u0022", + "Server-Timing": "traceparent;desc=\u002200-5cdfdc216c7662c855865a66f8696ba0-ea6f23a43eb723fa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-westus3-02", + "x-aml-cluster": "vienna-eastus-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "513fed09-5db4-422e-ab88-4b14ee77d9c2", - "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-correlation-request-id": "b35b11e2-cd6f-49f7-8b67-2e00ef20ff39", + "x-ms-ratelimit-remaining-subscription-reads": "11965", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20230131T063513Z:513fed09-5db4-422e-ab88-4b14ee77d9c2", - "x-request-time": "0.046" + "x-ms-routing-request-id": "WESTUS:20230214T015737Z:b35b11e2-cd6f-49f7-8b67-2e00ef20ff39", + "x-request-time": "0.043" }, "ResponseBody": { "value": { diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_outbound_rule_operations.pyTestWorkspaceOutboundRulestest_workspace_create_with_managed_network_list_set_show_remove_rules.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_outbound_rule_operations.pyTestWorkspaceOutboundRulestest_workspace_create_with_managed_network_list_set_show_remove_rules.json new file mode 100644 index 0000000000000..814c50611ec05 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_outbound_rule_operations.pyTestWorkspaceOutboundRulestest_workspace_create_with_managed_network_list_set_show_remove_rules.json @@ -0,0 +1,6000 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "253", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b3225640-2331-4dc5-9a32-ee7bfeaaf66f", + "x-ms-failure-cause": "gateway", + "x-ms-routing-request-id": "WESTUS:20230214T014830Z:b3225640-2331-4dc5-9a32-ee7bfeaaf66f" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet\u0027 under resource group \u002700000\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/DefaultResourceGroup-southcentralus?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "272", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2bba5106-25de-45a9-8318-26339bef1aba", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "WESTUS:20230214T014832Z:2bba5106-25de-45a9-8318-26339bef1aba" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus", + "name": "DefaultResourceGroup-southcentralus", + "type": "Microsoft.Resources/resourceGroups", + "location": "southcentralus", + "properties": { + "provisioningState": "Succeeded" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus/resources?$filter=substringof%28%27DefaultWorkspace-southcentralus%27%2Cname%29\u0026api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "322", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f184241f-35b5-4d55-a1de-3acae3d7dd89", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "WESTUS:20230214T014833Z:f184241f-35b5-4d55-a1de-3acae3d7dd89" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-southcentralus", + "name": "DefaultWorkspace-southcentralus", + "type": "Microsoft.OperationalInsights/workspaces", + "location": "southcentralus" + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761?api-version=2020-06-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "20217", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "properties": { + "template": { + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "workspaceName": { + "type": "string", + "metadata": { + "description": "Specifies the name of the Azure Machine Learning workspace." + } + }, + "description": { + "type": "string", + "metadata": { + "description": "Description string." + } + }, + "friendlyName": { + "type": "string", + "metadata": { + "description": "Friendly name." + } + }, + "location": { + "type": "string", + "metadata": { + "description": "Specifies the location for all resources." + } + }, + "resourceGroupName": { + "type": "string", + "metadata": { + "description": "Specifies the resource group name of the Azure Machine Learning workspace." + } + }, + "storageAccountOption": { + "type": "string", + "defaultValue": "new", + "allowedValues": [ + "new", + "existing" + ], + "metadata": { + "description": "Determines whether or not a new storage should be provisioned." + } + }, + "storageAccountName": { + "type": "string", + "defaultValue": "[concat(\u0027sa\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the storage account." + } + }, + "storageAccountType": { + "type": "string", + "defaultValue": "Standard_LRS" + }, + "storageAccountBehindVNet": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "true", + "false" + ], + "metadata": { + "description": "Determines whether or not to put the storage account behind VNet" + } + }, + "storageAccountResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "storageAccountLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "keyVaultOption": { + "type": "string", + "defaultValue": "new", + "allowedValues": [ + "new", + "existing" + ], + "metadata": { + "description": "Determines whether or not a new key vault should be provisioned." + } + }, + "keyVaultName": { + "type": "string", + "defaultValue": "[concat(\u0027kv\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the key vault." + } + }, + "keyVaultBehindVNet": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "true", + "false" + ], + "metadata": { + "description": "Determines whether or not to put the storage account behind VNet" + } + }, + "keyVaultResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "keyVaultLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "applicationInsightsOption": { + "type": "string", + "defaultValue": "new", + "allowedValues": [ + "new", + "existing" + ], + "metadata": { + "description": "Determines whether or not new ApplicationInsights should be provisioned." + } + }, + "applicationInsightsName": { + "type": "string", + "defaultValue": "[concat(\u0027ai\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of ApplicationInsights." + } + }, + "applicationInsightsResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "applicationInsightsLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "containerRegistryOption": { + "type": "string", + "defaultValue": "none", + "allowedValues": [ + "new", + "existing", + "none" + ], + "metadata": { + "description": "Determines whether or not a new container registry should be provisioned." + } + }, + "containerRegistryName": { + "type": "string", + "defaultValue": "[concat(\u0027cr\u0027, uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "The container registry bind to the workspace." + } + }, + "containerRegistrySku": { + "type": "string", + "defaultValue": "Standard", + "allowedValues": [ + "Basic", + "Standard", + "Premium" + ] + }, + "containerRegistryResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "containerRegistryBehindVNet": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "true", + "false" + ], + "metadata": { + "description": "Determines whether or not to put container registry behind VNet." + } + }, + "containerRegistryLocation": { + "type": "string", + "defaultValue": "[parameters(\u0027location\u0027)]" + }, + "vnetOption": { + "type": "string", + "defaultValue": "[if(equals(parameters(\u0027privateEndpointType\u0027), \u0027none\u0027), \u0027none\u0027, \u0027new\u0027)]", + "allowedValues": [ + "new", + "existing", + "none" + ], + "metadata": { + "description": "Determines whether or not a new VNet should be provisioned." + } + }, + "vnetName": { + "type": "string", + "defaultValue": "[concat(\u0027vn\u0027,uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the VNet" + } + }, + "vnetResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]" + }, + "addressPrefixes": { + "type": "array", + "defaultValue": [ + "10.0.0.0/16" + ], + "metadata": { + "description": "Address prefix of the virtual network" + } + }, + "subnetOption": { + "type": "string", + "defaultValue": "[if(or(not(equals(parameters(\u0027privateEndpointType\u0027), \u0027none\u0027)), equals(parameters(\u0027vnetOption\u0027), \u0027new\u0027)), \u0027new\u0027, \u0027none\u0027)]", + "allowedValues": [ + "new", + "existing", + "none" + ], + "metadata": { + "description": "Determines whether or not a new subnet should be provisioned." + } + }, + "subnetName": { + "type": "string", + "defaultValue": "[concat(\u0027sn\u0027,uniqueString(parameters(\u0027resourceGroupName\u0027), parameters(\u0027workspaceName\u0027)))]", + "metadata": { + "description": "Name of the subnet" + } + }, + "subnetPrefix": { + "type": "string", + "defaultValue": "10.0.0.0/24", + "metadata": { + "description": "Subnet prefix of the virtual network" + } + }, + "adbWorkspace": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "Azure Databrick workspace to be linked to the workspace" + } + }, + "confidential_data": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "false", + "true" + ], + "metadata": { + "description": "Specifies that the Azure Machine Learning workspace holds highly confidential data." + } + }, + "encryption_status": { + "type": "string", + "defaultValue": "Disabled", + "allowedValues": [ + "Enabled", + "Disabled" + ], + "metadata": { + "description": "Specifies if the Azure Machine Learning workspace should be encrypted with customer managed key." + } + }, + "cmk_keyvault": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "Specifies the customer managed keyVault arm id." + } + }, + "resource_cmk_uri": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "Specifies if the customer managed keyvault key uri." + } + }, + "privateEndpointType": { + "type": "string", + "defaultValue": "none", + "allowedValues": [ + "AutoApproval", + "ManualApproval", + "none" + ] + }, + "tagValues": { + "type": "object" + }, + "privateEndpointName": { + "type": "string", + "defaultValue": "pe", + "metadata": { + "description": "Name of the private end point added to the workspace" + } + }, + "privateEndpointResourceGroupName": { + "type": "string", + "defaultValue": "[parameters(\u0027resourceGroupName\u0027)]", + "metadata": { + "description": "Name of the resource group where the private end point is added to" + } + }, + "imageBuildCompute": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The name of the compute target to use for building environment Docker images with the container registry is behind a VNet." + } + }, + "publicNetworkAccess": { + "type": "string", + "defaultValue": "Enabled", + "allowedValues": [ + "Disabled", + "Enabled" + ], + "metadata": { + "description": "Whether to allow public endpoint connectivity when a workspace is private link enabled." + } + }, + "soft_delete_enabled": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "false", + "true" + ], + "metadata": { + "description": "Whether to create a workspace with soft delete capability" + } + }, + "allow_recover_softdeleted_workspace": { + "type": "string", + "defaultValue": "false", + "allowedValues": [ + "false", + "true" + ], + "metadata": { + "description": "Whether to allow an existing soft-deleted workspace to be recovered" + } + }, + "encryption_cosmosdb_resourceid": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The Bring-Your-Own cosmosdb account that customer brings to store data" + } + }, + "encryption_storage_resourceid": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The Bring-Your-Own storage account that customer brings to store data" + } + }, + "encryption_search_resourceid": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "The Bring-Your-Own search account that customer brings to store data" + } + }, + "identity": { + "type": "object", + "defaultValue": { + "type": "systemAssigned" + }, + "metadata": { + "description": "Managed identities assigned to workspace. If not specificed, SystemAssigned managed identity is the default." + } + }, + "primaryUserAssignedIdentity": { + "type": "string", + "defaultValue": "", + "metadata": { + "description": "ARM identifier of primary user assigned managed identity, in case multiple ones are specified. Also the default managed identity for clusterless compute." + } + }, + "managedNetwork": { + "type": "object", + "defaultValue": { + "isolationMode": "Disabled" + }, + "metadata": { + "description": "Managed network settings to be used for the workspace. If not specified, isolation mode Disabled is the default" + } + } + }, + "variables": { + "tenantId": "[subscription().tenantId]", + "storageAccount": "[resourceId(parameters(\u0027storageAccountResourceGroupName\u0027), \u0027Microsoft.Storage/storageAccounts\u0027, parameters(\u0027storageAccountName\u0027))]", + "keyVault": "[resourceId(parameters(\u0027keyVaultResourceGroupName\u0027), \u0027Microsoft.KeyVault/vaults\u0027, parameters(\u0027keyVaultName\u0027))]", + "containerRegistry": "[resourceId(parameters(\u0027containerRegistryResourceGroupName\u0027), \u0027Microsoft.ContainerRegistry/registries\u0027, parameters(\u0027containerRegistryName\u0027))]", + "applicationInsights": "[resourceId(parameters(\u0027applicationInsightsResourceGroupName\u0027), \u0027Microsoft.Insights/components\u0027, parameters(\u0027applicationInsightsName\u0027))]", + "vnet": "[resourceId(parameters(\u0027vnetResourceGroupName\u0027), \u0027Microsoft.Network/virtualNetworks\u0027, parameters(\u0027vnetName\u0027))]", + "subnet": "[resourceId(parameters(\u0027vnetResourceGroupName\u0027), \u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]", + "enablePE": true, + "networkRuleSetBehindVNet": { + "defaultAction": "deny", + "virtualNetworkRules": [ + { + "action": "Allow", + "id": "[variables(\u0027subnet\u0027)]" + } + ] + }, + "privateEndpointSettings": { + "name": "[concat(parameters(\u0027workspaceName\u0027), \u0027-PrivateEndpoint\u0027)]", + "properties": { + "privateLinkServiceId": "[resourceId(\u0027Microsoft.MachineLearningServices/workspaces\u0027, parameters(\u0027workspaceName\u0027))]", + "groupIds": [ + "amlworkspace" + ] + } + }, + "defaultPEConnections": "[array(variables(\u0027privateEndpointSettings\u0027))]", + "privateEndpointDeploymentName": "[concat(\u0027DeployPrivateEndpoint-\u0027, uniqueString(parameters(\u0027privateEndpointName\u0027)))]" + }, + "resources": [ + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027vnetOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Network/virtualNetworks", + "apiVersion": "2019-09-01", + "name": "[parameters(\u0027vnetName\u0027)]", + "location": "[parameters(\u0027location\u0027)]", + "tags": "[parameters(\u0027tagValues\u0027)]", + "properties": { + "addressSpace": { + "addressPrefixes": "[parameters(\u0027addressPrefixes\u0027)]" + }, + "enableDdosProtection": false, + "enableVmProtection": false + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027subnetOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Network/virtualNetworks/subnets", + "apiVersion": "2019-09-01", + "name": "[concat(parameters(\u0027vnetName\u0027), \u0027/\u0027, parameters(\u0027subnetName\u0027))]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks\u0027, parameters(\u0027vnetName\u0027))]" + ], + "properties": { + "addressPrefix": "[parameters(\u0027subnetPrefix\u0027)]", + "privateEndpointNetworkPolicies": "Disabled", + "privateLinkServiceNetworkPolicies": "Enabled", + "serviceEndpoints": [ + { + "service": "Microsoft.Storage" + }, + { + "service": "Microsoft.KeyVault" + }, + { + "service": "Microsoft.ContainerRegistry" + } + ] + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027storageAccountOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Storage/storageAccounts", + "apiVersion": "2019-04-01", + "name": "[parameters(\u0027storageAccountName\u0027)]", + "tags": "[parameters(\u0027tagValues\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "location": "[parameters(\u0027storageAccountLocation\u0027)]", + "sku": { + "name": "[parameters(\u0027storageAccountType\u0027)]" + }, + "kind": "StorageV2", + "properties": { + "encryption": { + "services": { + "blob": { + "enabled": true + }, + "file": { + "enabled": true + } + }, + "keySource": "Microsoft.Storage" + }, + "supportsHttpsTrafficOnly": true, + "allowBlobPublicAccess": false, + "networkAcls": "[if(equals(parameters(\u0027storageAccountBehindVNet\u0027), \u0027true\u0027), variables(\u0027networkRuleSetBehindVNet\u0027), json(\u0027null\u0027))]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027keyVaultOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.KeyVault/vaults", + "apiVersion": "2019-09-01", + "tags": "[parameters(\u0027tagValues\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "name": "[parameters(\u0027keyVaultName\u0027)]", + "location": "[parameters(\u0027keyVaultLocation\u0027)]", + "properties": { + "tenantId": "[variables(\u0027tenantId\u0027)]", + "sku": { + "name": "standard", + "family": "A" + }, + "accessPolicies": [], + "networkAcls": "[if(equals(parameters(\u0027keyVaultBehindVNet\u0027), \u0027true\u0027), variables(\u0027networkRuleSetBehindVNet\u0027), json(\u0027null\u0027))]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027containerRegistryOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.ContainerRegistry/registries", + "apiVersion": "2019-05-01", + "tags": "[parameters(\u0027tagValues\u0027)]", + "name": "[parameters(\u0027containerRegistryName\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "location": "[parameters(\u0027containerRegistryLocation\u0027)]", + "sku": { + "name": "[parameters(\u0027containerRegistrySku\u0027)]" + }, + "properties": { + "adminUserEnabled": true, + "networkRuleSet": "[if(equals(parameters(\u0027containerRegistryBehindVNet\u0027), \u0027true\u0027), variables(\u0027networkRuleSetBehindVNet\u0027), json(\u0027null\u0027))]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), equals(parameters(\u0027applicationInsightsOption\u0027), \u0027new\u0027))]", + "type": "Microsoft.Insights/components", + "tags": "[parameters(\u0027tagValues\u0027)]", + "apiVersion": "2020-02-02-preview", + "name": "[parameters(\u0027applicationInsightsName\u0027)]", + "location": "[if(or(equals(toLower(parameters(\u0027applicationInsightsLocation\u0027)),\u0027westcentralus\u0027), equals(toLower(parameters(\u0027applicationInsightsLocation\u0027)),\u0027eastus2euap\u0027), equals(toLower(parameters(\u0027applicationInsightsLocation\u0027)),\u0027centraluseuap\u0027)),\u0027southcentralus\u0027, parameters(\u0027applicationInsightsLocation\u0027))]", + "kind": "web", + "properties": { + "Application_Type": "web", + "WorkspaceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/DefaultResourceGroup-southcentralus/providers/Microsoft.OperationalInsights/workspaces/DefaultWorkspace-southcentralus" + } + }, + { + "condition": "[variables(\u0027enablePE\u0027)]", + "type": "Microsoft.MachineLearningServices/workspaces", + "apiVersion": "2022-12-01-preview", + "tags": "[parameters(\u0027tagValues\u0027)]", + "name": "[parameters(\u0027workspaceName\u0027)]", + "location": "[parameters(\u0027location\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.Storage/storageAccounts\u0027, parameters(\u0027storageAccountName\u0027))]", + "[resourceId(\u0027Microsoft.KeyVault/vaults\u0027, parameters(\u0027keyVaultName\u0027))]", + "[resourceId(\u0027Microsoft.Insights/components\u0027, parameters(\u0027applicationInsightsName\u0027))]", + "[resourceId(\u0027Microsoft.ContainerRegistry/registries\u0027, parameters(\u0027containerRegistryName\u0027))]" + ], + "identity": "[parameters(\u0027identity\u0027)]", + "properties": { + "friendlyName": "[parameters(\u0027friendlyName\u0027)]", + "description": "[parameters(\u0027description\u0027)]", + "storageAccount": "[variables(\u0027storageAccount\u0027)]", + "keyVault": "[variables(\u0027keyVault\u0027)]", + "applicationInsights": "[variables(\u0027applicationInsights\u0027)]", + "containerRegistry": "[if(not(equals(parameters(\u0027containerRegistryOption\u0027), \u0027none\u0027)), variables(\u0027containerRegistry\u0027), json(\u0027null\u0027))]", + "hbiWorkspace": "[parameters(\u0027confidential_data\u0027)]", + "imageBuildCompute": "[parameters(\u0027imageBuildCompute\u0027)]", + "publicNetworkAccess": "[parameters(\u0027publicNetworkAccess\u0027)]", + "softDeleteEnabled": "[parameters(\u0027soft_delete_enabled\u0027)]", + "allowRecoverSoftDeletedWorkspace": "[parameters(\u0027allow_recover_softdeleted_workspace\u0027)]", + "encryption": { + "status": "[parameters(\u0027encryption_status\u0027)]", + "keyVaultProperties": { + "keyVaultArmId": "[parameters(\u0027cmk_keyvault\u0027)]", + "keyIdentifier": "[parameters(\u0027resource_cmk_uri\u0027)]" + }, + "cosmosDbArmId": "[parameters(\u0027encryption_cosmosdb_resourceid\u0027)]", + "storageAccountArmId": "[parameters(\u0027encryption_storage_resourceid\u0027)]", + "SearchAccountArmId": "[parameters(\u0027encryption_search_resourceid\u0027)]" + }, + "primaryUserAssignedIdentity": "[parameters(\u0027primaryUserAssignedIdentity\u0027)]", + "managedNetwork": "[parameters(\u0027managedNetwork\u0027)]" + } + }, + { + "condition": "[and(variables(\u0027enablePE\u0027), not(equals(parameters(\u0027privateEndpointType\u0027), \u0027none\u0027)))]", + "type": "Microsoft.Resources/deployments", + "apiVersion": "2020-06-01", + "name": "[variables(\u0027privateEndpointDeploymentName\u0027)]", + "resourceGroup": "[parameters(\u0027privateEndpointResourceGroupName\u0027)]", + "dependsOn": [ + "[resourceId(\u0027Microsoft.MachineLearningServices/workspaces\u0027, parameters(\u0027workspaceName\u0027))]", + "[resourceId(\u0027Microsoft.Network/virtualNetworks/subnets\u0027, parameters(\u0027vnetName\u0027), parameters(\u0027subnetName\u0027))]" + ], + "properties": { + "mode": "Incremental", + "template": { + "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [ + { + "apiVersion": "2020-06-01", + "name": "[parameters(\u0027privateEndpointName\u0027)]", + "type": "Microsoft.Network/privateEndpoints", + "location": "[parameters(\u0027location\u0027)]", + "tags": "[parameters(\u0027tagValues\u0027)]", + "properties": { + "privateLinkServiceConnections": "[if(equals(parameters(\u0027privateEndpointType\u0027), \u0027AutoApproval\u0027), variables(\u0027defaultPEConnections\u0027), json(\u0027null\u0027))]", + "manualPrivateLinkServiceConnections": "[if(equals(parameters(\u0027privateEndpointType\u0027), \u0027ManualApproval\u0027), variables(\u0027defaultPEConnections\u0027), json(\u0027null\u0027))]", + "subnet": { + "id": "[variables(\u0027subnet\u0027)]" + } + } + } + ] + } + } + } + ] + }, + "parameters": { + "location": { + "value": "centraluseuap" + }, + "workspaceName": { + "value": "e2etest_test_847597965260_mvnet" + }, + "resourceGroupName": { + "value": "00000" + }, + "description": { + "value": "e2etest_test_847597965260_mvnet description" + }, + "friendlyName": { + "value": "e2etest_test_847597965260_mvnet display name" + }, + "tagValues": { + "value": { + "createdByToolkit": "sdk-v2-1.5.0" + } + }, + "keyVaultOption": { + "value": "new" + }, + "keyVaultName": { + "value": "e2etesttkeyvault5cdb2669" + }, + "keyVaultResourceGroupName": { + "value": "00000" + }, + "storageAccountOption": { + "value": "new" + }, + "storageAccountName": { + "value": "e2etesttstorage2a88c6316" + }, + "storageAccountResourceGroupName": { + "value": "00000" + }, + "applicationInsightsOption": { + "value": "new" + }, + "applicationInsightsName": { + "value": "e2etesttinsights23b489f4" + }, + "applicationInsightsResourceGroupName": { + "value": "00000" + }, + "containerRegistryOption": { + "value": "none" + }, + "containerRegistryName": { + "value": "name" + }, + "containerRegistryResourceGroupName": { + "value": "" + }, + "encryption_status": { + "value": "Disabled" + }, + "cmk_keyvault": { + "value": "" + }, + "resource_cmk_uri": { + "value": "" + }, + "privateEndpointName": { + "value": "name" + }, + "subnetOption": { + "value": "existing" + }, + "subnetName": { + "value": "default" + }, + "vnetOption": { + "value": "existing" + }, + "vnetName": { + "value": "name" + }, + "vnetResourceGroupName": { + "value": "name" + }, + "privateEndpointType": { + "value": "none" + }, + "privateEndpointResourceGroupName": { + "value": "name" + }, + "confidential_data": { + "value": "false" + }, + "imageBuildCompute": { + "value": "" + }, + "publicNetworkAccess": { + "value": "Enabled" + }, + "soft_delete_enabled": { + "value": "false" + }, + "allow_recover_softdeleted_workspace": { + "value": "false" + }, + "encryption_cosmosdb_resourceid": { + "value": "" + }, + "encryption_storage_resourceid": { + "value": "" + }, + "encryption_search_resourceid": { + "value": "" + }, + "identity": { + "value": { + "type": "SystemAssigned" + } + }, + "primaryUserAssignedIdentity": { + "value": "" + }, + "managedNetwork": { + "value": { + "isolationMode": "AllowOnlyApprovedOutbound", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "category": "UserDefined", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + } + }, + "my-storage": { + "type": "PrivateEndpoint", + "category": "UserDefined", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + } + }, + "pytorch": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.pytorch.org" + } + } + } + } + }, + "mode": "incremental" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "Cache-Control": "no-cache", + "Content-Length": "8562", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5fa5b7ee-0bd3-4793-ad8a-57e8217fa392", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-routing-request-id": "WESTUS:20230214T014838Z:5fa5b7ee-0bd3-4793-ad8a-57e8217fa392" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761", + "name": "e2etest_test_847597965260_mvnet-9407761", + "type": "Microsoft.Resources/deployments", + "properties": { + "templateHash": "4984303229931942319", + "parameters": { + "workspaceName": { + "type": "String", + "value": "e2etest_test_847597965260_mvnet" + }, + "description": { + "type": "String", + "value": "e2etest_test_847597965260_mvnet description" + }, + "friendlyName": { + "type": "String", + "value": "e2etest_test_847597965260_mvnet display name" + }, + "location": { + "type": "String", + "value": "centraluseuap" + }, + "resourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountOption": { + "type": "String", + "value": "new" + }, + "storageAccountName": { + "type": "String", + "value": "e2etesttstorage2a88c6316" + }, + "storageAccountType": { + "type": "String", + "value": "Standard_LRS" + }, + "storageAccountBehindVNet": { + "type": "String", + "value": "false" + }, + "storageAccountResourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountLocation": { + "type": "String", + "value": "centraluseuap" + }, + "keyVaultOption": { + "type": "String", + "value": "new" + }, + "keyVaultName": { + "type": "String", + "value": "e2etesttkeyvault5cdb2669" + }, + "keyVaultBehindVNet": { + "type": "String", + "value": "false" + }, + "keyVaultResourceGroupName": { + "type": "String", + "value": "00000" + }, + "keyVaultLocation": { + "type": "String", + "value": "centraluseuap" + }, + "applicationInsightsOption": { + "type": "String", + "value": "new" + }, + "applicationInsightsName": { + "type": "String", + "value": "e2etesttinsights23b489f4" + }, + "applicationInsightsResourceGroupName": { + "type": "String", + "value": "00000" + }, + "applicationInsightsLocation": { + "type": "String", + "value": "centraluseuap" + }, + "containerRegistryOption": { + "type": "String", + "value": "none" + }, + "containerRegistryName": { + "type": "String", + "value": "name" + }, + "containerRegistrySku": { + "type": "String", + "value": "Standard" + }, + "containerRegistryResourceGroupName": { + "type": "String", + "value": "" + }, + "containerRegistryBehindVNet": { + "type": "String", + "value": "false" + }, + "containerRegistryLocation": { + "type": "String", + "value": "centraluseuap" + }, + "vnetOption": { + "type": "String", + "value": "existing" + }, + "vnetName": { + "type": "String", + "value": "name" + }, + "vnetResourceGroupName": { + "type": "String", + "value": "name" + }, + "addressPrefixes": { + "type": "Array", + "value": [ + "10.0.0.0/16" + ] + }, + "subnetOption": { + "type": "String", + "value": "existing" + }, + "subnetName": { + "type": "String", + "value": "default" + }, + "subnetPrefix": { + "type": "String", + "value": "10.0.0.0/24" + }, + "adbWorkspace": { + "type": "String", + "value": "" + }, + "confidential_data": { + "type": "String", + "value": "false" + }, + "encryption_status": { + "type": "String", + "value": "Disabled" + }, + "cmk_keyvault": { + "type": "String", + "value": "" + }, + "resource_cmk_uri": { + "type": "String", + "value": "" + }, + "privateEndpointType": { + "type": "String", + "value": "none" + }, + "tagValues": { + "type": "Object", + "value": { + "createdByToolkit": "sdk-v2-1.5.0" + } + }, + "privateEndpointName": { + "type": "String", + "value": "name" + }, + "privateEndpointResourceGroupName": { + "type": "String", + "value": "name" + }, + "imageBuildCompute": { + "type": "String", + "value": "" + }, + "publicNetworkAccess": { + "type": "String", + "value": "Enabled" + }, + "soft_delete_enabled": { + "type": "String", + "value": "false" + }, + "allow_recover_softdeleted_workspace": { + "type": "String", + "value": "false" + }, + "encryption_cosmosdb_resourceid": { + "type": "String", + "value": "" + }, + "encryption_storage_resourceid": { + "type": "String", + "value": "" + }, + "encryption_search_resourceid": { + "type": "String", + "value": "" + }, + "identity": { + "type": "Object", + "value": { + "type": "SystemAssigned" + } + }, + "primaryUserAssignedIdentity": { + "type": "String", + "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "AllowOnlyApprovedOutbound", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "category": "UserDefined", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + } + }, + "my-storage": { + "type": "PrivateEndpoint", + "category": "UserDefined", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + } + }, + "pytorch": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.pytorch.org" + } + } + } + } + }, + "mode": "Incremental", + "provisioningState": "Accepted", + "timestamp": "2023-02-14T01:48:37.7629778Z", + "duration": "PT0.0005177S", + "correlationId": "5fa5b7ee-0bd3-4793-ad8a-57e8217fa392", + "providers": [ + { + "namespace": "Microsoft.Storage", + "resourceTypes": [ + { + "resourceType": "storageAccounts", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.KeyVault", + "resourceTypes": [ + { + "resourceType": "vaults", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.Insights", + "resourceTypes": [ + { + "resourceType": "components", + "locations": [ + "southcentralus" + ] + } + ] + }, + { + "namespace": "Microsoft.MachineLearningServices", + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "centraluseuap" + ] + } + ] + } + ], + "dependencies": [ + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name", + "resourceType": "Microsoft.Network/virtualNetworks", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/name/providers/Microsoft.Resources/deployments/DeployPrivateEndpoint-q2xi2ah3t47py", + "resourceType": "Microsoft.Resources/deployments", + "resourceName": "DeployPrivateEndpoint-q2xi2ah3t47py" + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "80542366-97dc-40e8-8347-2017ee5d3d48", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "WESTUS:20230214T014838Z:80542366-97dc-40e8-8347-2017ee5d3d48" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2084", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8b796391-0cd7-48b6-b40b-798f64198851", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "WESTUS:20230214T014843Z:8b796391-0cd7-48b6-b40b-798f64198851" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:48:42.182404Z", + "duration": "PT3.7071275S", + "trackingId": "3bf67bfe-2d60-4b2b-9263-5617dd4b6046", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:48:40.7894224Z", + "duration": "PT2.3780262S", + "trackingId": "72819fd9-4406-4584-a9af-fd522aa72d31", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0dfd4cdf-8c7a-44a8-9edd-51bd24ac0353", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "WESTUS:20230214T014843Z:0dfd4cdf-8c7a-44a8-9edd-51bd24ac0353" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2084", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ebe80a66-d79e-44bb-9b2b-2a7ddfb56c8a", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "WESTUS:20230214T014849Z:ebe80a66-d79e-44bb-9b2b-2a7ddfb56c8a" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:48:42.182404Z", + "duration": "PT3.7071275S", + "trackingId": "3bf67bfe-2d60-4b2b-9263-5617dd4b6046", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:48:40.7894224Z", + "duration": "PT2.3780262S", + "trackingId": "72819fd9-4406-4584-a9af-fd522aa72d31", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7c6522b4-5ca2-4bd9-805d-53c8ac0a36c4", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "WESTUS:20230214T014849Z:7c6522b4-5ca2-4bd9-805d-53c8ac0a36c4" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a42baffa-8e78-4973-aedb-3c65bee3be5b", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "WESTUS:20230214T014854Z:a42baffa-8e78-4973-aedb-3c65bee3be5b" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2084", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "838b9aba-9079-4143-8722-9db50b4570a8", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "WESTUS:20230214T014854Z:838b9aba-9079-4143-8722-9db50b4570a8" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:48:42.182404Z", + "duration": "PT3.7071275S", + "trackingId": "3bf67bfe-2d60-4b2b-9263-5617dd4b6046", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:48:40.7894224Z", + "duration": "PT2.3780262S", + "trackingId": "72819fd9-4406-4584-a9af-fd522aa72d31", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2dd03f98-95fc-41ae-8d5d-4981fae1570c", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "WESTUS:20230214T014859Z:2dd03f98-95fc-41ae-8d5d-4981fae1570c" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2086", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:48:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9a59fb34-cf8d-4570-93dd-05b4cab3c88d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "WESTUS:20230214T014859Z:9a59fb34-cf8d-4570-93dd-05b4cab3c88d" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:48:42.182404Z", + "duration": "PT3.7071275S", + "trackingId": "3bf67bfe-2d60-4b2b-9263-5617dd4b6046", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:56.3101542Z", + "duration": "PT17.898758S", + "trackingId": "b2309f12-472a-4dab-9dba-8b67b74832b0", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b6f293a2-6582-4819-9da2-abadd05a080b", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "WESTUS:20230214T014904Z:b6f293a2-6582-4819-9da2-abadd05a080b" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2823", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b10f62f9-464c-4570-85f3-0f91a1f63f30", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "WESTUS:20230214T014905Z:b10f62f9-464c-4570-85f3-0f91a1f63f30" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/7DEA555FB45686B5", + "operationId": "7DEA555FB45686B5", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:49:04.0370615Z", + "duration": "PT2.4674769S", + "trackingId": "a95d2db8-3b16-4691-a17f-3b318545ec3d", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:01.5034352Z", + "duration": "PT23.0281587S", + "trackingId": "3fae8154-3eb7-430b-81c0-bc84addb62c4", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:56.3101542Z", + "duration": "PT17.898758S", + "trackingId": "b2309f12-472a-4dab-9dba-8b67b74832b0", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4953df67-d7e0-47f9-809c-80a144dd6c6a", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "WESTUS:20230214T014909Z:4953df67-d7e0-47f9-809c-80a144dd6c6a" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2823", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a92b6898-a361-4fba-bdcb-7f52ed1634f5", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "WESTUS:20230214T014910Z:a92b6898-a361-4fba-bdcb-7f52ed1634f5" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/7DEA555FB45686B5", + "operationId": "7DEA555FB45686B5", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:49:04.0370615Z", + "duration": "PT2.4674769S", + "trackingId": "a95d2db8-3b16-4691-a17f-3b318545ec3d", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:01.5034352Z", + "duration": "PT23.0281587S", + "trackingId": "3fae8154-3eb7-430b-81c0-bc84addb62c4", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:56.3101542Z", + "duration": "PT17.898758S", + "trackingId": "b2309f12-472a-4dab-9dba-8b67b74832b0", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d61ac429-29e9-4d5c-bed6-0bb692fcc052", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "WESTUS:20230214T014915Z:d61ac429-29e9-4d5c-bed6-0bb692fcc052" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2823", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fb118c04-387f-4375-a17b-8232a10998fd", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "WESTUS:20230214T014915Z:fb118c04-387f-4375-a17b-8232a10998fd" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/7DEA555FB45686B5", + "operationId": "7DEA555FB45686B5", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:49:04.0370615Z", + "duration": "PT2.4674769S", + "trackingId": "a95d2db8-3b16-4691-a17f-3b318545ec3d", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:01.5034352Z", + "duration": "PT23.0281587S", + "trackingId": "3fae8154-3eb7-430b-81c0-bc84addb62c4", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:56.3101542Z", + "duration": "PT17.898758S", + "trackingId": "b2309f12-472a-4dab-9dba-8b67b74832b0", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3959e985-4805-4b81-bce2-b5717c0b44f0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "WESTUS:20230214T014920Z:3959e985-4805-4b81-bce2-b5717c0b44f0" + }, + "ResponseBody": { + "status": "Running" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "2823", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8356b418-a635-4631-bac3-477c50de2307", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "WESTUS:20230214T014921Z:8356b418-a635-4631-bac3-477c50de2307" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/7DEA555FB45686B5", + "operationId": "7DEA555FB45686B5", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Running", + "timestamp": "2023-02-14T01:49:04.0370615Z", + "duration": "PT2.4674769S", + "trackingId": "a95d2db8-3b16-4691-a17f-3b318545ec3d", + "statusCode": "Accepted", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:01.5034352Z", + "duration": "PT23.0281587S", + "trackingId": "3fae8154-3eb7-430b-81c0-bc84addb62c4", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:56.3101542Z", + "duration": "PT17.898758S", + "trackingId": "b2309f12-472a-4dab-9dba-8b67b74832b0", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operationStatuses/08585252675699166852?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "22", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "50801c57-2ff6-418f-a254-36978a70e9f7", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "WESTUS:20230214T014925Z:50801c57-2ff6-418f-a254-36978a70e9f7" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "9182", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c489c736-96e2-425d-9d59-1f6e92036c24", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "WESTUS:20230214T014925Z:c489c736-96e2-425d-9d59-1f6e92036c24" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761", + "name": "e2etest_test_847597965260_mvnet-9407761", + "type": "Microsoft.Resources/deployments", + "properties": { + "templateHash": "4984303229931942319", + "parameters": { + "workspaceName": { + "type": "String", + "value": "e2etest_test_847597965260_mvnet" + }, + "description": { + "type": "String", + "value": "e2etest_test_847597965260_mvnet description" + }, + "friendlyName": { + "type": "String", + "value": "e2etest_test_847597965260_mvnet display name" + }, + "location": { + "type": "String", + "value": "centraluseuap" + }, + "resourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountOption": { + "type": "String", + "value": "new" + }, + "storageAccountName": { + "type": "String", + "value": "e2etesttstorage2a88c6316" + }, + "storageAccountType": { + "type": "String", + "value": "Standard_LRS" + }, + "storageAccountBehindVNet": { + "type": "String", + "value": "false" + }, + "storageAccountResourceGroupName": { + "type": "String", + "value": "00000" + }, + "storageAccountLocation": { + "type": "String", + "value": "centraluseuap" + }, + "keyVaultOption": { + "type": "String", + "value": "new" + }, + "keyVaultName": { + "type": "String", + "value": "e2etesttkeyvault5cdb2669" + }, + "keyVaultBehindVNet": { + "type": "String", + "value": "false" + }, + "keyVaultResourceGroupName": { + "type": "String", + "value": "00000" + }, + "keyVaultLocation": { + "type": "String", + "value": "centraluseuap" + }, + "applicationInsightsOption": { + "type": "String", + "value": "new" + }, + "applicationInsightsName": { + "type": "String", + "value": "e2etesttinsights23b489f4" + }, + "applicationInsightsResourceGroupName": { + "type": "String", + "value": "00000" + }, + "applicationInsightsLocation": { + "type": "String", + "value": "centraluseuap" + }, + "containerRegistryOption": { + "type": "String", + "value": "none" + }, + "containerRegistryName": { + "type": "String", + "value": "name" + }, + "containerRegistrySku": { + "type": "String", + "value": "Standard" + }, + "containerRegistryResourceGroupName": { + "type": "String", + "value": "" + }, + "containerRegistryBehindVNet": { + "type": "String", + "value": "false" + }, + "containerRegistryLocation": { + "type": "String", + "value": "centraluseuap" + }, + "vnetOption": { + "type": "String", + "value": "existing" + }, + "vnetName": { + "type": "String", + "value": "name" + }, + "vnetResourceGroupName": { + "type": "String", + "value": "name" + }, + "addressPrefixes": { + "type": "Array", + "value": [ + "10.0.0.0/16" + ] + }, + "subnetOption": { + "type": "String", + "value": "existing" + }, + "subnetName": { + "type": "String", + "value": "default" + }, + "subnetPrefix": { + "type": "String", + "value": "10.0.0.0/24" + }, + "adbWorkspace": { + "type": "String", + "value": "" + }, + "confidential_data": { + "type": "String", + "value": "false" + }, + "encryption_status": { + "type": "String", + "value": "Disabled" + }, + "cmk_keyvault": { + "type": "String", + "value": "" + }, + "resource_cmk_uri": { + "type": "String", + "value": "" + }, + "privateEndpointType": { + "type": "String", + "value": "none" + }, + "tagValues": { + "type": "Object", + "value": { + "createdByToolkit": "sdk-v2-1.5.0" + } + }, + "privateEndpointName": { + "type": "String", + "value": "name" + }, + "privateEndpointResourceGroupName": { + "type": "String", + "value": "name" + }, + "imageBuildCompute": { + "type": "String", + "value": "" + }, + "publicNetworkAccess": { + "type": "String", + "value": "Enabled" + }, + "soft_delete_enabled": { + "type": "String", + "value": "false" + }, + "allow_recover_softdeleted_workspace": { + "type": "String", + "value": "false" + }, + "encryption_cosmosdb_resourceid": { + "type": "String", + "value": "" + }, + "encryption_storage_resourceid": { + "type": "String", + "value": "" + }, + "encryption_search_resourceid": { + "type": "String", + "value": "" + }, + "identity": { + "type": "Object", + "value": { + "type": "SystemAssigned" + } + }, + "primaryUserAssignedIdentity": { + "type": "String", + "value": "" + }, + "managedNetwork": { + "type": "Object", + "value": { + "isolationMode": "AllowOnlyApprovedOutbound", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "category": "UserDefined", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + } + }, + "my-storage": { + "type": "PrivateEndpoint", + "category": "UserDefined", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + } + }, + "pytorch": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.pytorch.org" + } + } + } + } + }, + "mode": "Incremental", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:22.4750016Z", + "duration": "PT44.7125415S", + "correlationId": "5fa5b7ee-0bd3-4793-ad8a-57e8217fa392", + "providers": [ + { + "namespace": "Microsoft.Storage", + "resourceTypes": [ + { + "resourceType": "storageAccounts", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.KeyVault", + "resourceTypes": [ + { + "resourceType": "vaults", + "locations": [ + "centraluseuap" + ] + } + ] + }, + { + "namespace": "Microsoft.Insights", + "resourceTypes": [ + { + "resourceType": "components", + "locations": [ + "southcentralus" + ] + } + ] + }, + { + "namespace": "Microsoft.MachineLearningServices", + "resourceTypes": [ + { + "resourceType": "workspaces", + "locations": [ + "centraluseuap" + ] + } + ] + } + ], + "dependencies": [ + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name", + "resourceType": "Microsoft.Network/virtualNetworks", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/name", + "resourceType": "Microsoft.ContainerRegistry/registries", + "resourceName": "name" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + }, + { + "dependsOn": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Network/virtualNetworks/name/subnets/default", + "resourceType": "Microsoft.Network/virtualNetworks/subnets", + "resourceName": "name/default" + } + ], + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/name/providers/Microsoft.Resources/deployments/DeployPrivateEndpoint-q2xi2ah3t47py", + "resourceType": "Microsoft.Resources/deployments", + "resourceName": "DeployPrivateEndpoint-q2xi2ah3t47py" + } + ], + "outputResources": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet" + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316" + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Length": "3286", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "03cf022e-540d-48ac-bc28-42e7d0cb83f7", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "WESTUS:20230214T014926Z:03cf022e-540d-48ac-bc28-42e7d0cb83f7" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/7DEA555FB45686B5", + "operationId": "7DEA555FB45686B5", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:22.1012301Z", + "duration": "PT20.5316455S", + "trackingId": "2e2dee93-3d63-4e29-87aa-a9a0db6c5c7b", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:01.5034352Z", + "duration": "PT23.0281587S", + "trackingId": "3fae8154-3eb7-430b-81c0-bc84addb62c4", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:56.3101542Z", + "duration": "PT17.898758S", + "trackingId": "b2309f12-472a-4dab-9dba-8b67b74832b0", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/08585252675699166852", + "operationId": "08585252675699166852", + "properties": { + "provisioningOperation": "EvaluateDeploymentOutput", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:22.39685Z", + "duration": "PT20.8272654S", + "trackingId": "a40846b0-1946-464c-8ec0-65e304d8b976", + "statusCode": "OK" + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/deployments/e2etest_test_847597965260_mvnet-9407761/operations?api-version=2020-06-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Connection": "close", + "Content-Encoding": "gzip", + "Content-Length": "3286", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2143d38f-6e2b-494e-a4f6-c2f97c107b69", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "WESTUS:20230214T014926Z:2143d38f-6e2b-494e-a4f6-c2f97c107b69" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/7DEA555FB45686B5", + "operationId": "7DEA555FB45686B5", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:22.1012301Z", + "duration": "PT20.5316455S", + "trackingId": "2e2dee93-3d63-4e29-87aa-a9a0db6c5c7b", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "resourceType": "Microsoft.MachineLearningServices/workspaces", + "resourceName": "e2etest_test_847597965260_mvnet" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/57EA81C6981F2122", + "operationId": "57EA81C6981F2122", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:01.5034352Z", + "duration": "PT23.0281587S", + "trackingId": "3fae8154-3eb7-430b-81c0-bc84addb62c4", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "resourceType": "Microsoft.Storage/storageAccounts", + "resourceName": "e2etesttstorage2a88c6316" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/6C414D811B2BBF16", + "operationId": "6C414D811B2BBF16", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:40.903898Z", + "duration": "PT2.4925018S", + "trackingId": "2b7c791d-a795-46d2-a75a-5b020a126342", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Insights/components/e2etesttinsights23b489f4", + "resourceType": "Microsoft.Insights/components", + "resourceName": "e2etesttinsights23b489f4" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/41F5A12522996FF4", + "operationId": "41F5A12522996FF4", + "properties": { + "provisioningOperation": "Create", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:48:56.3101542Z", + "duration": "PT17.898758S", + "trackingId": "b2309f12-472a-4dab-9dba-8b67b74832b0", + "statusCode": "OK", + "targetResource": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.KeyVault/vaults/e2etesttkeyvault5cdb2669", + "resourceType": "Microsoft.KeyVault/vaults", + "resourceName": "e2etesttkeyvault5cdb2669" + } + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Resources/deployments/e2etest_test_847597965260_mvnet-9407761/operations/08585252675699166852", + "operationId": "08585252675699166852", + "properties": { + "provisioningOperation": "EvaluateDeploymentOutput", + "provisioningState": "Succeeded", + "timestamp": "2023-02-14T01:49:22.39685Z", + "duration": "PT20.8272654S", + "trackingId": "a40846b0-1946-464c-8ec0-65e304d8b976", + "statusCode": "OK" + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ced865595bc48c7b24133aa903c68f2e-9225f5a46edb92e7-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d5309da-46bf-416a-843d-160b7f7d0a1a", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014927Z:8d5309da-46bf-416a-843d-160b7f7d0a1a", + "x-request-time": "0.022" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "name": "e2etest_test_847597965260_mvnet", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "centraluseuap", + "tags": { + "createdByToolkit": "sdk-v2-1.5.0" + }, + "etag": null, + "properties": { + "friendlyName": "e2etest_test_847597965260_mvnet display name", + "description": "e2etest_test_847597965260_mvnet description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights23b489f4", + "hbiWorkspace": false, + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "imageBuildCompute": null, + "provisioningState": "Succeeded", + "managedNetwork": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + }, + "v1LegacyMode": false, + "softDeleteEnabled": false, + "containerRegistry": "", + "creationTime": "2023-02-14T01:49:02.2166354Z", + "notebookInfo": { + "resourceId": "ed32ff1854444e77927846024376647e", + "fqdn": "ml-e2etestte-centraluseuap-f3aa097e-0273-45bc-b581-1ffccb8f9915.centraluseuap.notebooks.azure.net", + "isPrivateLinkEnabled": false, + "notebookPreparationError": null + }, + "storageHnsEnabled": false, + "workspaceId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "linkedModelInventoryArmId": null, + "privateLinkCount": 0, + "publicNetworkAccess": "Enabled", + "discoveryUrl": "https://master.api.azureml-test.ms/discovery", + "mlFlowTrackingUri": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "sdkTelemetryAppInsightsKey": "efed27c9-e6dc-4190-9989-79f9b7f3a4b7", + "sasGetterUri": "", + "enableDataIsolation": false + }, + "identity": { + "type": "SystemAssigned", + "principalId": "7aa9fb64-4afe-4b0b-9c71-a19693daee57", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + }, + "kind": "Default", + "sku": { + "name": "Basic", + "tier": "Basic" + }, + "systemData": { + "createdAt": "2023-02-14T01:49:02.2166354Z", + "createdBy": "joharrington@microsoft.com", + "createdByType": "User", + "lastModifiedAt": "2023-02-14T01:49:02.2166354Z", + "lastModifiedBy": "joharrington@microsoft.com", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9e84c723c7c9701e3ca82f44b4d4c078-a558c83db2b2c488-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3a8612d9-939f-4329-b5cb-ceb0209def55", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014927Z:3a8612d9-939f-4329-b5cb-ceb0209def55", + "x-request-time": "0.021" + }, + "ResponseBody": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-92da16347c4940307ec20e561bb5fdb0-d00928b51a2584d8-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "07609e0e-7621-4321-b40b-67bacd5af238", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014927Z:07609e0e-7621-4321-b40b-67bacd5af238", + "x-request-time": "0.034" + }, + "ResponseBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "206", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "testFQDNRule": { + "type": "FQDN", + "category": "UserDefined", + "destination": "test.com" + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/8EKz-oZTfexCdGlup7XqaYohio6eY4gFjeJj3dU5YlQ?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:49:27 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/8EKz-oZTfexCdGlup7XqaYohio6eY4gFjeJj3dU5YlQ?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "47e7f3f2-6f8d-4cbf-ad96-989919b0ac21", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014928Z:47e7f3f2-6f8d-4cbf-ad96-989919b0ac21", + "x-request-time": "0.138" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/8EKz-oZTfexCdGlup7XqaYohio6eY4gFjeJj3dU5YlQ?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d7927e0c9fee6cb1cf211ce266f3795f-7c44b2fcb29e84a7-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e4efeb79-78e3-4816-8cd4-851b6dfe2be1", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014928Z:e4efeb79-78e3-4816-8cd4-851b6dfe2be1", + "x-request-time": "0.013" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/8EKz-oZTfexCdGlup7XqaYohio6eY4gFjeJj3dU5YlQ?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d0c0fbabf5e61a12864cdc69e9491490-97362db5696001f9-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1ea252fd-487c-499e-bb42-7ad61f8dc89c", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014958Z:1ea252fd-487c-499e-bb42-7ad61f8dc89c", + "x-request-time": "0.051" + }, + "ResponseBody": { + "status": "Succeeded", + "percentComplete": 100.0 + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ba26dbeadb726c1ed792db74288306a0-9ade097b63749ae7-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d6726bab-4c3f-4080-b7a0-bfcd1a28e80d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014959Z:d6726bab-4c3f-4080-b7a0-bfcd1a28e80d", + "x-request-time": "0.021" + }, + "ResponseBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "testFQDNRule": { + "type": "FQDN", + "destination": "test.com", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules/testFQDNRule?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4336936e9dd292f6f8c3f829e59ee73e-544dadef39df6260-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b14fe881-8693-430c-b3c4-557f36c9dfe6", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014959Z:b14fe881-8693-430c-b3c4-557f36c9dfe6", + "x-request-time": "0.043" + }, + "ResponseBody": { + "type": "FQDN", + "destination": "test.com", + "status": "Inactive", + "category": "UserDefined" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-cd33db6608cb1d46b50ecb2f4485d9b0-255984bdd89c8fc6-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "73caaf78-2c55-429c-9c09-f9089ef3cf75", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014959Z:73caaf78-2c55-429c-9c09-f9089ef3cf75", + "x-request-time": "0.015" + }, + "ResponseBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "testFQDNRule": { + "type": "FQDN", + "destination": "test.com", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "276", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "testServiceTagRule": { + "type": "ServiceTag", + "category": "UserDefined", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80" + } + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/ItFp_ateSbdJibbfdWaCAaWJLVCqyD3HV2CXiHmO9Yo?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:49:59 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/ItFp_ateSbdJibbfdWaCAaWJLVCqyD3HV2CXiHmO9Yo?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "915c110a-143e-4ae1-a03c-0f47df68ee83", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T014959Z:915c110a-143e-4ae1-a03c-0f47df68ee83", + "x-request-time": "0.149" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/ItFp_ateSbdJibbfdWaCAaWJLVCqyD3HV2CXiHmO9Yo?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:49:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-32fc0505858790023e2c8f81c79d44aa-d68a65544a7f9c2a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d828f627-d4bd-40ec-8d82-5205d98c332e", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015000Z:d828f627-d4bd-40ec-8d82-5205d98c332e", + "x-request-time": "0.011" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/ItFp_ateSbdJibbfdWaCAaWJLVCqyD3HV2CXiHmO9Yo?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:50:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5a6f77286a0c4c5b4d04ccad8a84845c-d87753f9210a542a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "560a81fc-b2af-487c-9156-123e76debf0f", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015030Z:560a81fc-b2af-487c-9156-123e76debf0f", + "x-request-time": "0.011" + }, + "ResponseBody": { + "status": "Succeeded", + "percentComplete": 100.0 + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:50:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-43eeaddfd227cd38335d805e91664393-e74c05c80ee93bdc-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "387311e4-44d0-40fd-b965-46a5f129d76b", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015030Z:387311e4-44d0-40fd-b965-46a5f129d76b", + "x-request-time": "0.017" + }, + "ResponseBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "testFQDNRule": { + "type": "FQDN", + "destination": "test.com", + "status": "Inactive", + "category": "UserDefined" + }, + "testServiceTagRule": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules/testServiceTagRule?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:50:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-158b11369b13fc7bf33d67bd4578937a-4aeedc40151504d6-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c4abe81e-10df-4a8d-97c9-ecd1915f0cb0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015030Z:c4abe81e-10df-4a8d-97c9-ecd1915f0cb0", + "x-request-time": "0.019" + }, + "ResponseBody": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80" + }, + "status": "Inactive", + "category": "UserDefined" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:50:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-59c2af8d19c45b25f034760a128eb615-6480563dd1d18f37-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "199c1299-c0ac-4d8e-8751-b7fb5c3e5b7d", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015030Z:199c1299-c0ac-4d8e-8751-b7fb5c3e5b7d", + "x-request-time": "0.025" + }, + "ResponseBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "testFQDNRule": { + "type": "FQDN", + "destination": "test.com", + "status": "Inactive", + "category": "UserDefined" + }, + "testServiceTagRule": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "409", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "testPERule": { + "type": "PrivateEndpoint", + "category": "UserDefined", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": true + } + } + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/a2FX_cnAAeyArPdZfJlKi9hMrgN1d_WrHtx5WS7cjKo?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:50:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/a2FX_cnAAeyArPdZfJlKi9hMrgN1d_WrHtx5WS7cjKo?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2f261b0e-10ce-4929-a082-5334df19197d", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015031Z:2f261b0e-10ce-4929-a082-5334df19197d", + "x-request-time": "0.131" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/a2FX_cnAAeyArPdZfJlKi9hMrgN1d_WrHtx5WS7cjKo?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:50:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a0a712f477264e92c1b0ffe2306a3ab6-f8f7cf8384b334dc-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b84d4642-02e3-457c-a2e6-515a765a139e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015031Z:b84d4642-02e3-457c-a2e6-515a765a139e", + "x-request-time": "0.031" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/a2FX_cnAAeyArPdZfJlKi9hMrgN1d_WrHtx5WS7cjKo?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:51:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8200fef7ad53c0bdcfd59c748bfb194d-f64a161334d1e4e8-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "127f50d6-2912-4a78-8349-38f01f2a6295", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015101Z:127f50d6-2912-4a78-8349-38f01f2a6295", + "x-request-time": "0.012" + }, + "ResponseBody": { + "status": "Succeeded", + "percentComplete": 100.0 + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:51:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-eadc528110833c6a154ed8a998494edd-451d4ec9b708002f-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33eafda3-b5f4-413e-9718-17817cacb1b9", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015101Z:33eafda3-b5f4-413e-9718-17817cacb1b9", + "x-request-time": "0.017" + }, + "ResponseBody": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "testFQDNRule": { + "type": "FQDN", + "destination": "test.com", + "status": "Inactive", + "category": "UserDefined" + }, + "testServiceTagRule": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "testPERule": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules/testPERule?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:51:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d1be7de3dd254b4076c1a581551c1667-659ad2601abeb82b-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1c818ea4-efb8-4748-afe8-7289285a7a6e", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015101Z:1c818ea4-efb8-4748-afe8-7289285a7a6e", + "x-request-time": "0.016" + }, + "ResponseBody": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "UserDefined" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules/testFQDNRule?api-version=2022-12-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/fXXOUqzQFVeRALhusSUdTqBIxpeizV8suXofVeXPOoU?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:51:02 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/fXXOUqzQFVeRALhusSUdTqBIxpeizV8suXofVeXPOoU?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "832ae33f-174c-4a91-bc66-702f285fe1cd", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015102Z:832ae33f-174c-4a91-bc66-702f285fe1cd", + "x-request-time": "0.136" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/fXXOUqzQFVeRALhusSUdTqBIxpeizV8suXofVeXPOoU?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:51:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-658662cdfa5bc0dfae709c0dd5a2cc80-5d988e13ba17d5f9-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9dad858d-ab68-4e92-9fcd-395b09a37a78", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015102Z:9dad858d-ab68-4e92-9fcd-395b09a37a78", + "x-request-time": "0.013" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/fXXOUqzQFVeRALhusSUdTqBIxpeizV8suXofVeXPOoU?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:51:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-7099fcc687fa68b5011be7a9a9c6b6cf-8704d3269d1def36-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "110bd343-fd29-4b77-bbae-fc0e413d80e9", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015132Z:110bd343-fd29-4b77-bbae-fc0e413d80e9", + "x-request-time": "0.011" + }, + "ResponseBody": { + "status": "Succeeded", + "percentComplete": 100.0 + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules/testServiceTagRule?api-version=2022-12-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/X3J_nDYd5PrQrsoD5aquVqnYJ_-YyeLY7x2fvRqFKlM?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:51:32 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/X3J_nDYd5PrQrsoD5aquVqnYJ_-YyeLY7x2fvRqFKlM?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0d66ddce-526b-4968-925d-249f29a1cb2c", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015133Z:0d66ddce-526b-4968-925d-249f29a1cb2c", + "x-request-time": "0.115" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/X3J_nDYd5PrQrsoD5aquVqnYJ_-YyeLY7x2fvRqFKlM?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:51:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ad63d5d94306947802b6b47422259361-b34da5c7a9932850-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c3c5332e-df76-4bc9-87e7-b6674382c35f", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015133Z:c3c5332e-df76-4bc9-87e7-b6674382c35f", + "x-request-time": "0.011" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/X3J_nDYd5PrQrsoD5aquVqnYJ_-YyeLY7x2fvRqFKlM?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:52:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-25888f478dff54883249236e4950250c-29ab989535100b1c-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "82cecd41-68dc-4e8d-b724-cab0444cfad8", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015203Z:82cecd41-68dc-4e8d-b724-cab0444cfad8", + "x-request-time": "0.011" + }, + "ResponseBody": { + "status": "Succeeded", + "percentComplete": 100.0 + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules/testPERule?api-version=2022-12-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/SR1HhejX2tdX5bOz4w9l_qtghawFm_3WfiN3zJQXT4U?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:52:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/SR1HhejX2tdX5bOz4w9l_qtghawFm_3WfiN3zJQXT4U?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "08ae3e1d-700e-48cd-ba39-68df661d8bf6", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015204Z:08ae3e1d-700e-48cd-ba39-68df661d8bf6", + "x-request-time": "0.144" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/SR1HhejX2tdX5bOz4w9l_qtghawFm_3WfiN3zJQXT4U?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:52:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3299e8e0760195dc70473fbe57211593-ed4d6a81beb63f03-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7bee7129-8dcd-4d36-bae6-fe2a084caeaf", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015204Z:7bee7129-8dcd-4d36-bae6-fe2a084caeaf", + "x-request-time": "0.011" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/SR1HhejX2tdX5bOz4w9l_qtghawFm_3WfiN3zJQXT4U?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:52:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-80380ae73ac62f070b7b0914b4ce6549-cd74953247e9fa38-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "77bb173d-f97d-46a4-a63f-dce47711e6f0", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015234Z:77bb173d-f97d-46a4-a63f-dce47711e6f0", + "x-request-time": "0.013" + }, + "ResponseBody": { + "status": "Succeeded", + "percentComplete": 100.0 + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet/managedNetwork/outboundRules?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:52:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-7356cfc101f59b5a097606d6743e0a15-89f493f4f2718e5a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1b495dcd-613b-485c-80c7-02ff9a02a173", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015234Z:1b495dcd-613b-485c-80c7-02ff9a02a173", + "x-request-time": "0.039" + }, + "ResponseBody": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:52:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-39bbb68e680ac8efed062ebeede34fd8-5e9f5cefe5c9d283-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "906006ed-4731-4b70-9f5a-a55490ec262e", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015235Z:906006ed-4731-4b70-9f5a-a55490ec262e", + "x-request-time": "0.019" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "name": "e2etest_test_847597965260_mvnet", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "centraluseuap", + "tags": { + "createdByToolkit": "sdk-v2-1.5.0" + }, + "etag": null, + "properties": { + "friendlyName": "e2etest_test_847597965260_mvnet display name", + "description": "e2etest_test_847597965260_mvnet description", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights23b489f4", + "hbiWorkspace": false, + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "imageBuildCompute": null, + "provisioningState": "Succeeded", + "managedNetwork": { + "isolationMode": "AllowOnlyApprovedOutbound", + "networkId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "outboundRules": { + "my-service": { + "type": "ServiceTag", + "destination": { + "serviceTag": "DataFactory", + "protocol": "TCP", + "portRanges": "80, 8080-8089" + }, + "status": "Inactive", + "category": "UserDefined" + }, + "my-storage": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount", + "subresourceTarget": "blob", + "sparkEnabled": false + }, + "status": "Inactive", + "category": "UserDefined" + }, + "pytorch": { + "type": "FQDN", + "destination": "*.pytorch.org", + "status": "Inactive", + "category": "UserDefined" + }, + "__SYS_PE_e2etesttkeyvault5cdb2669_vault": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669", + "subresourceTarget": "vault", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_blob": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "blob", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_PE_e2etesttstorage2a88c6316_file": { + "type": "PrivateEndpoint", + "destination": { + "serviceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316", + "subresourceTarget": "file", + "sparkEnabled": true + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureActiveDirectory": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureActiveDirectory", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureFrontDoor.FirstParty": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureFrontDoor.FirstParty", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMachineLearning": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMachineLearning", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureMonitor": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureMonitor", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_AzureResourceManager": { + "type": "ServiceTag", + "destination": { + "serviceTag": "AzureResourceManager", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_BatchNodeManagement": { + "type": "ServiceTag", + "destination": { + "serviceTag": "BatchNodeManagement", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_MicrosoftContainerRegistry": { + "type": "ServiceTag", + "destination": { + "serviceTag": "MicrosoftContainerRegistry", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + }, + "__SYS_ST_VirtualNetwork": { + "type": "ServiceTag", + "destination": { + "serviceTag": "VirtualNetwork", + "protocol": "*", + "portRanges": "*" + }, + "status": "Inactive", + "category": "Required" + } + } + }, + "v1LegacyMode": false, + "softDeleteEnabled": false, + "containerRegistry": "", + "creationTime": "2023-02-14T01:50:30.8848569Z", + "notebookInfo": { + "resourceId": "ed32ff1854444e77927846024376647e", + "fqdn": "ml-e2etestte-centraluseuap-f3aa097e-0273-45bc-b581-1ffccb8f9915.centraluseuap.notebooks.azure.net", + "isPrivateLinkEnabled": false, + "notebookPreparationError": null + }, + "storageHnsEnabled": false, + "workspaceId": "f3aa097e-0273-45bc-b581-1ffccb8f9915", + "linkedModelInventoryArmId": null, + "privateLinkCount": 0, + "publicNetworkAccess": "Enabled", + "discoveryUrl": "https://master.api.azureml-test.ms/discovery", + "mlFlowTrackingUri": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet", + "sdkTelemetryAppInsightsKey": "efed27c9-e6dc-4190-9989-79f9b7f3a4b7", + "sasGetterUri": "", + "enableDataIsolation": false + }, + "identity": { + "type": "SystemAssigned", + "principalId": "7aa9fb64-4afe-4b0b-9c71-a19693daee57", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + }, + "kind": "Default", + "sku": { + "name": "Basic", + "tier": "Basic" + }, + "systemData": { + "createdAt": "2023-02-14T01:50:30.8848569Z", + "createdBy": "joharrington@microsoft.com", + "createdByType": "User", + "lastModifiedAt": "2023-02-14T01:52:03.7292729Z", + "lastModifiedBy": "joharrington@microsoft.com", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/e2etesttinsights23b489f4?api-version=2015-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Expose-Headers": "Request-Context", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:52:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e223a50b-0d55-4042-9d4e-1f8fab10e5b1", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-routing-request-id": "WESTUS:20230214T015241Z:e223a50b-0d55-4042-9d4e-1f8fab10e5b1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/e2etesttstorage2a88c6316?api-version=2019-06-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Content-Type": "text/plain; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:52:47 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", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bd86a7d9-b7f4-4117-9155-680a18bb35c8", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "WESTUS:20230214T015247Z:bd86a7d9-b7f4-4117-9155-680a18bb35c8" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/e2etesttkeyvault5cdb2669?api-version=2019-09-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-resource/15.0.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:52:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-AspNet-Version": "4.0.30319", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8247b8ab-6def-4551-a774-b8deec1efa37", + "x-ms-keyvault-service-version": "1.5.666.2", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-routing-request-id": "WESTUS:20230214T015251Z:8247b8ab-6def-4551-a774-b8deec1efa37", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/e2etest_test_847597965260_mvnet?api-version=2022-12-01-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "azure-asyncoperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/daeb516f-a79d-4dd5-8d99-b389463b6448?api-version=2022-12-01-preview\u0026type=async", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 14 Feb 2023 01:52:52 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/daeb516f-a79d-4dd5-8d99-b389463b6448?api-version=2022-12-01-preview\u0026type=location", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2e927f93-2e98-41e8-83fa-3a3e552ae4f1", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015252Z:2e927f93-2e98-41e8-83fa-3a3e552ae4f1", + "x-request-time": "0.119" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/workspaceOperationsStatus/daeb516f-a79d-4dd5-8d99-b389463b6448?api-version=2022-12-01-preview\u0026type=async", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyIsImtpZCI6Ii1LSTNROW5OUjdiUm9meG1lWm9YcWJIWkdldyJ9.eyJhdWQiOiJodHRwczovL21hbmFnZW1lbnQuYXp1cmUuY29tIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvNzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3LyIsImlhdCI6MTY3NjMzNjYzMCwibmJmIjoxNjc2MzM2NjMwLCJleHAiOjE2NzYzNDA5MTcsIl9jbGFpbV9uYW1lcyI6eyJncm91cHMiOiJzcmMxIn0sIl9jbGFpbV9zb3VyY2VzIjp7InNyYzEiOnsiZW5kcG9pbnQiOiJodHRwczovL2dyYXBoLndpbmRvd3MubmV0LzcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0Ny91c2Vycy9jMWFmZTY2My05MmU3LTQ5M2MtOWI1Ny0xNDBlZTkxNzQ1NDkvZ2V0TWVtYmVyT2JqZWN0cyJ9fSwiYWNyIjoiMSIsImFpbyI6IkFWUUFxLzhUQUFBQVNHcFJmeEdFVEFmb0Y3Tm1KYTZqcEhwMmRaaUMzYXg3QTllcjUxZ0t0Rmt2cFJoU3ZNczRob2FyVmJRd09IVzZnN05NSmZPSmk1VVZ5U3ZSS0V6Vm5ZeVU0M3RUQ0h0b0J1djMwTUNRdXdvPSIsImFtciI6WyJyc2EiLCJtZmEiXSwiYXBwaWQiOiIwNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDYiLCJhcHBpZGFjciI6IjAiLCJkZXZpY2VpZCI6ImM0YzQ4YTY1LTQ4YjUtNDUyNS1hYjU3LWU0NjljYjcwYTU2ZSIsImZhbWlseV9uYW1lIjoiSGFycmluZ3RvbiIsImdpdmVuX25hbWUiOiJKb3NoIiwiaXBhZGRyIjoiMTMxLjEwNy4xLjI0MiIsIm5hbWUiOiJKb3NoIEhhcnJpbmd0b24iLCJvaWQiOiJjMWFmZTY2My05MmU3LTQ5M2MtOWI1Ny0xNDBlZTkxNzQ1NDkiLCJvbnByZW1fc2lkIjoiUy0xLTUtMjEtMjEyNzUyMTE4NC0xNjA0MDEyOTIwLTE4ODc5Mjc1MjctNTk1OTE1ODgiLCJwdWlkIjoiMTAwMzIwMDIxNUUzOEJCRSIsInJoIjoiMC5BUm9BdjRqNWN2R0dyMEdScXkxODBCSGJSMFpJZjNrQXV0ZFB1a1Bhd2ZqMk1CTWFBTzAuIiwic2NwIjoidXNlcl9pbXBlcnNvbmF0aW9uIiwic3ViIjoiVDM1ZDZtbmotanNZRE9yeVFOeDA0OVVsNXlrazZIdEU0UU9BVUQ4RXpsWSIsInRpZCI6IjcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyIsInVuaXF1ZV9uYW1lIjoiam9oYXJyaW5ndG9uQG1pY3Jvc29mdC5jb20iLCJ1cG4iOiJqb2hhcnJpbmd0b25AbWljcm9zb2Z0LmNvbSIsInV0aSI6IldvNTFFdnJOQ1VPQlhjWVIzeUMzQUEiLCJ2ZXIiOiIxLjAiLCJ3aWRzIjpbImI3OWZiZjRkLTNlZjktNDY4OS04MTQzLTc2YjE5NGU4NTUwOSJdLCJ4bXNfY2MiOlsiQ1AxIl0sInhtc190Y2R0IjoxMjg5MjQxNTQ3fQ.L6ABFNDSxUuPwu_WyKO_JhtvoJd16jj6YzjKRDZePk7YJyZxz1h6MU_70aTvDs0hvl_6Kzj5facI7yL8ZJuTOsoyG9s5_I9HHoBbt_960qOFSzwJh5xNS2uSvSmQUUrderAuz7lA5DLAxNEwJE5ej_5BStcbIsGuAjpSiHxR30lgVb_9TruYJ5WyTWB3_xYOvcmHxrnU-qOv__E1WO8e_Px_K_LhsxA8fxxuDoCMqUtZZ1cuZKIh2dQL70bZsEV0PcOgZhRizbqTLIzHzbd1GI8qTish5BhRFPqQoFb--KCX0ChM7yAwmFNTgEJTubnZ4auPEywRm-B_1xhc6Fpz0Q", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.10 (Windows-10-10.0.22621-SP0)", + "x-ms-client-request-id": "4a697524-ac0a-11ed-88a4-f42679b37e95" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 14 Feb 2023 01:52:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d13d476030b9d6449150bd786b2dd0ef-bac8bcf0d7fecc6f-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fd997729-d7e3-4f8e-8799-8d5b815582b5", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-request-id": "fd997729-d7e3-4f8e-8799-8d5b815582b5", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "WESTUS:20230214T015252Z:fd997729-d7e3-4f8e-8799-8d5b815582b5", + "x-request-time": "0.010" + }, + "ResponseBody": { + "status": "InProgress" + } + } + ], + "Variables": { + "deployment_name": "e2etest_test_847597965260_mvnet-9407761", + "insights_name": "e2etesttinsights23b489f4", + "keyvault_name": "e2etesttkeyvault5cdb2669", + "storage_name": "e2etesttstorage2a88c6316", + "wps_name": "test_847597965260" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/workspace/workspace_mvnet.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/workspace/workspace_mvnet.yaml index 6dd2d6199e203..d9a97690a86ad 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/workspace/workspace_mvnet.yaml +++ b/sdk/ml/azure-ai-ml/tests/test_configs/workspace/workspace_mvnet.yaml @@ -1,21 +1,21 @@ name: e2etest_test_mvnet location: centraluseuap managed_network: - isolation_mode: AllowOnlyApprovedOutbound + isolation_mode: allow_only_approved_outbound outbound_rules: my-service: destination: port_ranges: 80, 8080-8089 protocol: TCP service_tag: DataFactory - type: ServiceTag + type: service_tag my-storage: destination: service_resource_id: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/MyGroup/providers/Microsoft.Storage/storageAccounts/MyAccount spark_enabled: false subresource_target: blob - type: PrivateEndpoint + type: private_endpoint pytorch: destination: '*.pytorch.org' - type: FQDN + type: fqdn tags: {}