diff --git a/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py b/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py index c9f067803afb1..6e0e609d38db5 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py @@ -1593,7 +1593,6 @@ def parallel_in_pipeline(job_data_path, score_model): assert_job_input_output_types(pipeline_job) assert pipeline_job.settings.default_compute == "cpu-cluster" - @pytest.mark.skip("https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659") def test_parallel_components_with_file_input(self, client: MLClient) -> None: components_dir = tests_root_dir / "test_configs/dsl_pipeline/parallel_component_with_file_input" @@ -2024,7 +2023,6 @@ def pipeline(job_in_number, job_in_other_number, job_in_path): client.jobs.get(child.name) client.jobs.get(child.name)._repr_html_() - @pytest.mark.skip("https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659") def test_dsl_pipeline_without_setting_binding_node(self, client: MLClient) -> None: from test_configs.dsl_pipeline.pipeline_with_set_binding_output_input.pipeline import ( pipeline_without_setting_binding_node, @@ -2077,7 +2075,6 @@ def test_dsl_pipeline_without_setting_binding_node(self, client: MLClient) -> No } assert expected_job == actual_job - @pytest.mark.skip("https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659") def test_dsl_pipeline_with_only_setting_pipeline_level(self, client: MLClient) -> None: from test_configs.dsl_pipeline.pipeline_with_set_binding_output_input.pipeline import ( pipeline_with_only_setting_pipeline_level, @@ -2130,7 +2127,6 @@ def test_dsl_pipeline_with_only_setting_pipeline_level(self, client: MLClient) - } assert expected_job == actual_job - @pytest.mark.skip("https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659") def test_dsl_pipeline_with_only_setting_binding_node(self, client: MLClient) -> None: # Todo: checkout run priority when backend is ready from test_configs.dsl_pipeline.pipeline_with_set_binding_output_input.pipeline import ( @@ -2194,7 +2190,6 @@ def test_dsl_pipeline_with_only_setting_binding_node(self, client: MLClient) -> } assert expected_job == actual_job - @pytest.mark.skip("https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659") def test_dsl_pipeline_with_setting_binding_node_and_pipeline_level(self, client: MLClient) -> None: from test_configs.dsl_pipeline.pipeline_with_set_binding_output_input.pipeline import ( pipeline_with_setting_binding_node_and_pipeline_level, diff --git a/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline_samples.py b/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline_samples.py index 60646946b16d2..61685de36ec2c 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline_samples.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline_samples.py @@ -67,9 +67,6 @@ def assert_dsl_curated(pipeline: PipelineJob, job_yaml, omit_fields): @pytest.mark.e2etest class TestDSLPipelineSamples(AzureRecordedTestCase): @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_e2e_local_components(self, client: MLClient) -> None: from test_configs.dsl_pipeline.e2e_local_components.pipeline import generate_dsl_pipeline as e2e_local_components @@ -113,9 +110,6 @@ def test_e2e_registered_components( assert_dsl_curated(pipeline, job_yaml, omit_fields) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_basic_component(self, client: MLClient) -> None: from test_configs.dsl_pipeline.basic_component.pipeline import generate_dsl_pipeline as basic_component @@ -123,9 +117,6 @@ def test_basic_component(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_component_with_input_output(self, client: MLClient) -> None: from test_configs.dsl_pipeline.component_with_input_output.pipeline import ( generate_dsl_pipeline as component_with_input_output, @@ -135,9 +126,6 @@ def test_component_with_input_output(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_basic_pipeline(self, client: MLClient) -> None: from test_configs.dsl_pipeline.basic_pipeline.pipeline import generate_dsl_pipeline as basic_pipeline @@ -145,9 +133,6 @@ def test_basic_pipeline(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_pipeline_with_data(self, client: MLClient) -> None: from test_configs.dsl_pipeline.pipline_with_data.pipeline import generate_dsl_pipeline as pipline_with_data @@ -155,9 +140,6 @@ def test_pipeline_with_data(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_local_data_input(self, client: MLClient) -> None: from test_configs.dsl_pipeline.local_data_input.pipeline import generate_dsl_pipeline as local_data_input @@ -165,9 +147,6 @@ def test_local_data_input(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_datastore_datapath_uri_folder(self, client: MLClient) -> None: from test_configs.dsl_pipeline.datastore_datapath_uri_folder.pipeline import ( generate_dsl_pipeline as datastore_datapath_uri_folder, @@ -177,9 +156,6 @@ def test_datastore_datapath_uri_folder(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_datastore_datapath_uri_file(self, client: MLClient) -> None: from test_configs.dsl_pipeline.datastore_datapath_uri_file.pipeline import ( generate_dsl_pipeline as datastore_datapath_uri_file, @@ -196,9 +172,6 @@ def test_dataset_input(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_web_url_input(self, client: MLClient) -> None: from test_configs.dsl_pipeline.web_url_input.pipeline import generate_dsl_pipeline as web_url_input @@ -220,9 +193,6 @@ def test_env_registered(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_env_conda_file(self, client: MLClient) -> None: from test_configs.dsl_pipeline.env_conda_file.pipeline import generate_dsl_pipeline as env_conda_file @@ -258,9 +228,6 @@ def test_nyc_taxi_data_regression(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_tf_mnist(self, client: MLClient) -> None: from test_configs.dsl_pipeline.tf_mnist.pipeline import generate_dsl_pipeline as tf_mnist @@ -295,9 +262,6 @@ def test_multi_parallel_components_with_file_input_pipeline_output( client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_parallel_components_with_tabular_input_pipeline_output(self, client: MLClient) -> None: from test_configs.dsl_pipeline.parallel_component_with_tabular_input.pipeline import ( generate_dsl_pipeline as pipeline_with_parallel_components, @@ -307,9 +271,6 @@ def test_parallel_components_with_tabular_input_pipeline_output(self, client: ML client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_parallel_components(self, client: MLClient) -> None: from test_configs.dsl_pipeline.parallel_component.pipeline import generate_dsl_pipeline as pipeline_with_parallel_components @@ -317,9 +278,6 @@ def test_parallel_components(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_automl_job_in_pipeline(self, client: MLClient) -> None: from test_configs.dsl_pipeline.automl_job_in_pipeline.pipeline import generate_dsl_pipeline as automl_job_in_pipeline @@ -327,9 +285,6 @@ def test_automl_job_in_pipeline(self, client: MLClient) -> None: client.create_or_update(pipeline) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_pipeline_with_pipeline_component(self, client: MLClient) -> None: from test_configs.dsl_pipeline.pipeline_with_pipeline_component.pipeline import ( generate_dsl_pipeline as pipeline_with_pipeline_component, diff --git a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline_samples.py b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline_samples.py index ce511d70d8158..a943c90a1a080 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline_samples.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline_samples.py @@ -37,9 +37,6 @@ def assert_dsl_curated(pipeline, job_yaml, omit_fields): @pytest.mark.timeout(_DSL_TIMEOUT_SECOND) @pytest.mark.unittest class TestDSLPipelineSamples: - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_e2e_local_components(self) -> None: from test_configs.dsl_pipeline.e2e_local_components.pipeline import generate_dsl_pipeline as e2e_local_components diff --git a/sdk/ml/azure-ai-ml/tests/import_job/e2etests/test_import_job.py b/sdk/ml/azure-ai-ml/tests/import_job/e2etests/test_import_job.py index 1b00320918777..b2511f85d3470 100644 --- a/sdk/ml/azure-ai-ml/tests/import_job/e2etests/test_import_job.py +++ b/sdk/ml/azure-ai-ml/tests/import_job/e2etests/test_import_job.py @@ -92,9 +92,6 @@ def validate_import_job_submit_cancel(self, job: ImportJob, client: MLClient) -> assert import_job_3.status in (JobStatus.CANCEL_REQUESTED, JobStatus.CANCELED, JobStatus.FAILED) @pytest.mark.e2etest - @pytest.mark.skip( - "https://dev.azure.com/msdata/Vienna/_workitems/edit/2009659" - ) def test_import_pipeline_submit_cancel(self, client: MLClient) -> None: pipeline: PipelineJob = load_job("./tests/test_configs/import_job/import_pipeline_test.yml") diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json index c043881c60494..50f6c2e93cfa2 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:43 GMT", + "Date": "Wed, 12 Oct 2022 12:26:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-905bbcf1784916fa739cc55736fb4e85-bd561e91a029adb5-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c7c0483bb828f7df697dc806c1c3d652-de9f9039edd8f411-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a446cfa-142e-4d67-b02b-6410193118a0", - "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-correlation-request-id": "806276d9-b88b-422b-aed6-2a496236c0b5", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163144Z:6a446cfa-142e-4d67-b02b-6410193118a0", - "x-request-time": "0.079" + "x-ms-routing-request-id": "JAPANEAST:20221012T122631Z:806276d9-b88b-422b-aed6-2a496236c0b5", + "x-request-time": "0.221" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", - "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,22 +56,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, "currentNodeCount": 1, - "targetNodeCount": 4, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 1, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-23T16:31:36.634\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:46 GMT", + "Date": "Wed, 12 Oct 2022 12:26:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e3ce1689bf51cb2234f2b540829c7210-fd7540e46853aa35-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b71c9e95ab9956bbfb8e7802bd216db3-7a3bf22827d32e56-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f74424f-eab3-41fd-be01-1c3ee74386e2", - "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-correlation-request-id": "0457decd-9b1b-4a2f-9255-952aead8ccf6", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163146Z:4f74424f-eab3-41fd-be01-1c3ee74386e2", - "x-request-time": "0.185" + "x-ms-routing-request-id": "JAPANEAST:20221012T122633Z:0457decd-9b1b-4a2f-9255-952aead8ccf6", + "x-request-time": "0.151" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav6dhrxexwlv7g", - "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:46 GMT", + "Date": "Wed, 12 Oct 2022 12:26:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-48e4f54540fb8eb05171072141572dc3-07ab6b8b217e2c08-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5f4492a91f1b8e84569af6cb1d34f6a1-4edd12eaccdbd12a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1c8a07c-823f-4f20-8a6e-f37b51f4d53f", - "x-ms-ratelimit-remaining-subscription-writes": "1147", + "x-ms-correlation-request-id": "082d9a83-bad7-4a8b-b35d-edb4075dc67b", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163147Z:b1c8a07c-823f-4f20-8a6e-f37b51f4d53f", - "x-request-time": "0.085" + "x-ms-routing-request-id": "JAPANEAST:20221012T122634Z:082d9a83-bad7-4a8b-b35d-edb4075dc67b", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:31:49 GMT", + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 16:31:47 GMT", - "ETag": "\u00220x8DA9D770C570D84\u0022", - "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", + "Date": "Wed, 12 Oct 2022 12:26:34 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:31:50 GMT", + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 16:31:47 GMT", + "Date": "Wed, 12 Oct 2022 12:26:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "1936", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -326,7 +326,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "outputs": { @@ -342,22 +342,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4576", + "Content-Length": "4626", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:56 GMT", + "Date": "Wed, 12 Oct 2022 12:26:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3a65a32917f1411ab04094f1625cdad7-de55432194144b54-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-53c93a62bd9f10c62e4a179974200d7e-301c25a56c732c6d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30139292-8804-4519-a3b1-82bc116e6035", - "x-ms-ratelimit-remaining-subscription-writes": "1085", + "x-ms-correlation-request-id": "930573e9-91f4-4d11-b98e-9aa36eb78d1d", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163157Z:30139292-8804-4519-a3b1-82bc116e6035", - "x-request-time": "3.315" + "x-ms-routing-request-id": "JAPANEAST:20221012T122641Z:930573e9-91f4-4d11-b98e-9aa36eb78d1d", + "x-request-time": "2.897" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -385,10 +385,11 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -396,7 +397,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -446,7 +448,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "inputs": { @@ -483,8 +485,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T16:31:56.6562633\u002B00:00", - "createdBy": "Zhengfei Wang", + "createdAt": "2022-10-12T12:26:40.6938702\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json index 0cfc14c50206e..4baa03b0cfdf2 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:21 GMT", + "Date": "Wed, 12 Oct 2022 12:26:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-da9d0c7881fbb05aba34239cd3132bde-7c0036c8b63a1cfd-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-20df98b8478549c0f645fd80e2b1b082-3625252f31d5c8d7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "266910e9-22a0-416e-ae7d-563426422344", - "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-correlation-request-id": "d3623f49-71fa-4856-913f-87ef29b720cf", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163122Z:266910e9-22a0-416e-ae7d-563426422344", - "x-request-time": "0.037" + "x-ms-routing-request-id": "JAPANEAST:20221012T122617Z:d3623f49-71fa-4856-913f-87ef29b720cf", + "x-request-time": "0.223" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", - "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,22 +56,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, + "currentNodeCount": 1, "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 1, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 3, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-23T16:26:15.13\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:25 GMT", + "Date": "Wed, 12 Oct 2022 12:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c3a3d90c21fc9d2a47c357e3b0483b11-e2646b5340389b96-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4d369c8781a4891a32c16652c86a8e53-dd7794e3424a1863-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "597e1467-45ce-4f85-b9bc-c2a220a91089", - "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-correlation-request-id": "bf600766-6088-4021-852f-bc462e8f78d7", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163126Z:597e1467-45ce-4f85-b9bc-c2a220a91089", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221012T122619Z:bf600766-6088-4021-852f-bc462e8f78d7", + "x-request-time": "0.093" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sav6dhrxexwlv7g", - "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:26 GMT", + "Date": "Wed, 12 Oct 2022 12:26:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8eff85a15f1b75582b1cbe41fa035ed1-571a15f0f0000e48-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-43a2b8ba1f9a540e1bfec102d2adb929-7c12f43267ca2ebb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4b910b8-0d27-42e2-9e15-117577e3fa66", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "81ce8937-265d-4845-82df-6b9a0c12227a", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163126Z:d4b910b8-0d27-42e2-9e15-117577e3fa66", - "x-request-time": "0.131" + "x-ms-routing-request-id": "JAPANEAST:20221012T122619Z:81ce8937-265d-4845-82df-6b9a0c12227a", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:31:29 GMT", + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:19 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 16:31:26 GMT", - "ETag": "\u00220x8DA9D770C570D84\u0022", - "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", + "Date": "Wed, 12 Oct 2022 12:26:20 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:31:29 GMT", + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 16:31:27 GMT", + "Date": "Wed, 12 Oct 2022 12:26:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "1936", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -325,7 +325,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "outputs": { @@ -342,22 +342,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4501", + "Content-Length": "4550", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:31:36 GMT", + "Date": "Wed, 12 Oct 2022 12:26:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cf273ca84ed9e676c3a694a8e3842d7f-fbc62d37328db07c-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3e20f4fcb504c30a1b3175443194a7a8-f7ba6873bfa46eeb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd86d493-2ef6-451e-bfc4-9892a597eb58", - "x-ms-ratelimit-remaining-subscription-writes": "1086", + "x-ms-correlation-request-id": "3c982ad8-bd01-4227-921d-ef60016b05cb", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "KOREACENTRAL:20220923T163136Z:fd86d493-2ef6-451e-bfc4-9892a597eb58", - "x-request-time": "3.179" + "x-ms-routing-request-id": "JAPANEAST:20221012T122627Z:3c982ad8-bd01-4227-921d-ef60016b05cb", + "x-request-time": "2.879" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -385,10 +385,11 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -396,7 +397,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -444,7 +446,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "inputs": { @@ -481,8 +483,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T16:31:36.4905014\u002B00:00", - "createdBy": "Zhengfei Wang", + "createdAt": "2022-10-12T12:26:26.463385\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json index 37e734142f3da..d9cc982cf5261 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:34:06 GMT", + "Date": "Wed, 12 Oct 2022 12:26:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4a852c559bd20c25aa0aa746dfd04170-93f1da10108513c0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a323fa514652e404f7b90474e598afb0-80c3daa256a6552e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38a6ea38-21bd-47c0-a26a-5640512e0e01", - "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-correlation-request-id": "d57574db-afa4-4bd8-a4ef-ffc884362d3f", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233406Z:38a6ea38-21bd-47c0-a26a-5640512e0e01", - "x-request-time": "0.258" + "x-ms-routing-request-id": "JAPANEAST:20221012T122646Z:d57574db-afa4-4bd8-a4ef-ffc884362d3f", + "x-request-time": "0.223" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,22 +56,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:30:16.916\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,11 +97,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:34:07 GMT", + "Date": "Wed, 12 Oct 2022 12:26:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f54afa3c5166b9f9ed6c8ff64fa7bdc3-8dd50db91a26b2a0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b8f93d73992a4b9589de3818249e1686-11b45741dfbde65d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -110,11 +110,11 @@ ], "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7931a96-24ec-4c0f-9c95-b3db8ed70d1e", - "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-correlation-request-id": "77c0a97f-61d7-40af-8878-760cfc5daced", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233407Z:a7931a96-24ec-4c0f-9c95-b3db8ed70d1e", - "x-request-time": "0.085" + "x-ms-routing-request-id": "JAPANEAST:20221012T122649Z:77c0a97f-61d7-40af-8878-760cfc5daced", + "x-request-time": "0.117" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:34:07 GMT", + "Date": "Wed, 12 Oct 2022 12:26:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-eaa2fa7d15efcfc050ca87830ca9734a-ffd0d98bc429c747-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6d54d924d961647b32d8a0d0a28ccb2f-8dffd8a56e82fc32-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": "cb2c1b7f-fc96-4ba4-a35f-42c7c634c309", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "4bf62f9a-0a69-49de-933c-8ea48c4db8cc", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233408Z:cb2c1b7f-fc96-4ba4-a35f-42c7c634c309", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221012T122649Z:4bf62f9a-0a69-49de-933c-8ea48c4db8cc", + "x-request-time": "0.108" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,26 +183,26 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:34:08 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:34:08 GMT", - "ETag": "\u00220x8DAA2730C5EF7E8\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:33:43 GMT", + "Date": "Wed, 12 Oct 2022 12:26:49 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:33:43 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "be174f69-45d6-4b52-8147-6eb54190b726", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "363cf64f-33e5-4ceb-9cf4-c38bd7011b4e", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:34:08 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:34:08 GMT", + "Date": "Wed, 12 Oct 2022 12:26:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,12 +244,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "1982", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -327,7 +327,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8e707c2a-09b2-444b-b29d-f3b19c865f87" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "outputs": { @@ -344,22 +344,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4574", + "Content-Length": "4621", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:34:12 GMT", + "Date": "Wed, 12 Oct 2022 12:26:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f8527e83b0b750e3615f8b179f5ee61f-9f0588394a779e41-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d22f68c0f277f82991483ba9c95ae436-7320db9dd90d7d52-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c46f4958-5735-41ee-860b-11b6399fa17b", - "x-ms-ratelimit-remaining-subscription-writes": "1084", + "x-ms-correlation-request-id": "7cadfdb2-7b30-4542-bb64-e225a453a24f", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233412Z:c46f4958-5735-41ee-860b-11b6399fa17b", - "x-request-time": "2.955" + "x-ms-routing-request-id": "JAPANEAST:20221012T122657Z:7cadfdb2-7b30-4542-bb64-e225a453a24f", + "x-request-time": "3.015" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -390,7 +390,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -398,7 +399,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -448,7 +450,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8e707c2a-09b2-444b-b29d-f3b19c865f87" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "inputs": { @@ -485,8 +487,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:34:12.226833\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:26:56.3902975\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json index f797e346c3e19..1bf3cd7b01ec0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:34 GMT", + "Date": "Wed, 12 Oct 2022 12:25:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-264d256647acb66966aa1d77fd42a78f-dc737018bfc510b9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1a8f7eea57783a950f6ad3a7e5591381-c181e736ed7004b0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b03c494c-0394-4717-b6c1-3f41cabe0449", - "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-correlation-request-id": "720113d8-afd4-4e98-94f2-7f8231e5f6e8", + "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233335Z:b03c494c-0394-4717-b6c1-3f41cabe0449", - "x-request-time": "0.262" + "x-ms-routing-request-id": "JAPANEAST:20221012T122558Z:720113d8-afd4-4e98-94f2-7f8231e5f6e8", + "x-request-time": "0.288" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,22 +56,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:30:16.916\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,11 +97,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:35 GMT", + "Date": "Wed, 12 Oct 2022 12:25:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2c5df38467c28c3024d486185b78c7b1-ab8a332cf9f86c95-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-32940bd805ac0e9166eaf26a0f3b76d6-891557b54af4571a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -110,10 +110,10 @@ ], "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6b03488-07c9-485b-b245-0b8e02dcd82a", - "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-correlation-request-id": "89062b6a-3bcc-466d-91bb-ad0725d3133d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233336Z:b6b03488-07c9-485b-b245-0b8e02dcd82a", + "x-ms-routing-request-id": "JAPANEAST:20221012T122600Z:89062b6a-3bcc-466d-91bb-ad0725d3133d", "x-request-time": "0.094" }, "ResponseBody": { @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:36 GMT", + "Date": "Wed, 12 Oct 2022 12:26:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0a2dfd332dea658b3eb2c9e3d7a5566f-fb32e9fc71266b15-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-111cb77e38c2b4a8c8e099502da937ca-b1cf89df5adde53b-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": "832d8cf7-fbff-4a43-b6d0-fded88cfa66c", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "bd47432e-ea6c-4f1a-88c8-98b4200c15a9", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233336Z:832d8cf7-fbff-4a43-b6d0-fded88cfa66c", - "x-request-time": "0.107" + "x-ms-routing-request-id": "JAPANEAST:20221012T122601Z:bd47432e-ea6c-4f1a-88c8-98b4200c15a9", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,98 +183,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:33:36 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:33:36 GMT", + "Accept-Ranges": "bytes", + "Content-Length": "1502", + "Content-MD5": "zAix1RSwqgjraik/VOQjSg==", + "Content-Type": "application/octet-stream", + "Date": "Wed, 12 Oct 2022 12:26:00 GMT", + "ETag": "\u00220x8DA9F72C3199CAF\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:54:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1459", - "Content-MD5": "0vFwXEoU1mnn7HUtIfbkVg==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:33:36 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlCmltcG9ydCBvcwpmcm9tIGRhdGV0aW1lIGltcG9ydCBkYXRldGltZQpmcm9tIHBhdGhsaWIgaW1wb3J0IFBhdGgKZnJvbSB1dWlkIGltcG9ydCB1dWlkNAoKcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoInRyYWluIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS10cmFpbmluZ19kYXRhIiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggdG8gdHJhaW5pbmcgZGF0YSIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbWF4X2Vwb2NocyIsIHR5cGU9aW50LCBoZWxwPSJNYXggIyBvZiBlcG9jaHMgZm9yIHRoZSB0cmFpbmluZyIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbGVhcm5pbmdfcmF0ZSIsIHR5cGU9ZmxvYXQsIGhlbHA9IkxlYXJuaW5nIHJhdGUiKQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWxlYXJuaW5nX3JhdGVfc2NoZWR1bGUiLCB0eXBlPXN0ciwgaGVscD0iTGVhcm5pbmcgcmF0ZSBzY2hlZHVsZSIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbW9kZWxfb3V0cHV0IiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggb2Ygb3V0cHV0IG1vZGVsIikKCmFyZ3MgPSBwYXJzZXIucGFyc2VfYXJncygpCgpwcmludCgiaGVsbG8gdHJhaW5pbmcgd29ybGQuLi4iKQoKbGluZXMgPSBbCiAgICBmIlRyYWluaW5nIGRhdGEgcGF0aDoge2FyZ3MudHJhaW5pbmdfZGF0YX0iLAogICAgZiJNYXggZXBvY2hzOiB7YXJncy5tYXhfZXBvY2hzfSIsCiAgICBmIkxlYXJuaW5nIHJhdGU6IHthcmdzLmxlYXJuaW5nX3JhdGV9IiwKICAgIGYiTGVhcm5pbmcgcmF0ZToge2FyZ3MubGVhcm5pbmdfcmF0ZV9zY2hlZHVsZX0iLAogICAgZiJNb2RlbCBvdXRwdXQgcGF0aDoge2FyZ3MubW9kZWxfb3V0cHV0fSIsCl0KCmZvciBsaW5lIGluIGxpbmVzOgogICAgcHJpbnQobGluZSkKCnByaW50KCJtb3VudGVkX3BhdGggZmlsZXM6ICIpCmFyciA9IG9zLmxpc3RkaXIoYXJncy50cmFpbmluZ19kYXRhKQpwcmludChhcnIpCgpmb3IgZmlsZW5hbWUgaW4gYXJyOgogICAgcHJpbnQoInJlYWRpbmcgZmlsZTogJXMgLi4uIiAlIGZpbGVuYW1lKQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLnRyYWluaW5nX2RhdGEsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6CiAgICAgICAgcHJpbnQoaGFuZGxlLnJlYWQoKSkKCgojIERvIHRoZSB0cmFpbiBhbmQgc2F2ZSB0aGUgdHJhaW5lZCBtb2RlbCBhcyBhIGZpbGUgaW50byB0aGUgb3V0cHV0IGZvbGRlci4KIyBIZXJlIG9ubHkgb3V0cHV0IGEgZHVtbXkgZGF0YSBmb3IgZGVtby4KY3VydGltZSA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWSAlSDolTTolUyIpCm1vZGVsID0gZiJUaGlzIGlzIGEgZHVtbXkgbW9kZWwgd2l0aCBpZDoge3N0cih1dWlkNCgpKX0gZ2VuZXJhdGVkIGF0OiB7Y3VydGltZX1cbiIKKFBhdGgoYXJncy5tb2RlbF9vdXRwdXQpIC8gIm1vZGVsLnR4dCIpLndyaXRlX3RleHQobW9kZWwpCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "0vFwXEoU1mnn7HUtIfbkVg==", - "Date": "Thu, 29 Sep 2022 23:33:36 GMT", - "ETag": "\u00220x8DAA273081590BA\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:33:36 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "SrMvEJ0dNWM=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:54:07 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "6bc0f588-42a3-4619-9e1b-e83f4b37c11d", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:33:36 GMT", - "x-ms-meta-name": "db112db8-ba0a-455b-a651-4cb32e96decd", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:33:36 GMT", - "ETag": "\u00220x8DAA273081E9018\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:33:36 GMT", + "Date": "Wed, 12 Oct 2022 12:26:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db112db8-ba0a-455b-a651-4cb32e96decd/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6bc0f588-42a3-4619-9e1b-e83f4b37c11d/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -282,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -292,31 +267,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "828", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:36 GMT", + "Date": "Wed, 12 Oct 2022 12:26:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db112db8-ba0a-455b-a651-4cb32e96decd/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3ace1299ae3f305668ce6fea4cc71a82-0a510bbe0b8d1025-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8a8d23804aa055beb011c8432078dd79-729b52a5b535cd7b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "179a0233-8c17-4bda-9421-f06d932c9b1f", - "x-ms-ratelimit-remaining-subscription-writes": "1089", + "x-ms-correlation-request-id": "e11d6545-31b6-44fd-82d4-383038a6596d", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233337Z:179a0233-8c17-4bda-9421-f06d932c9b1f", - "x-request-time": "0.484" + "x-ms-routing-request-id": "JAPANEAST:20221012T122602Z:e11d6545-31b6-44fd-82d4-383038a6596d", + "x-request-time": "0.213" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db112db8-ba0a-455b-a651-4cb32e96decd/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6bc0f588-42a3-4619-9e1b-e83f4b37c11d/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -328,14 +307,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-29T23:33:37.0933898\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:54:09.4771125\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:33:37.0933898\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:26:02.2792594\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -349,7 +328,7 @@ "Connection": "keep-alive", "Content-Length": "1282", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -360,7 +339,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db112db8-ba0a-455b-a651-4cb32e96decd/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6bc0f588-42a3-4619-9e1b-e83f4b37c11d/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -399,26 +378,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2348", + "Content-Length": "2347", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:42 GMT", + "Date": "Wed, 12 Oct 2022 12:26:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-88d2ebc3a10b8dc1bd1381c46948b314-fb66358cefad044c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c78458033817f0081e3ea3bebc2d91a6-0a919187e5a92c5a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8cd9990c-c011-4680-8747-4dfad14863eb", - "x-ms-ratelimit-remaining-subscription-writes": "1088", + "x-ms-correlation-request-id": "66f245a0-7832-4b72-bdfd-45735d21105a", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233343Z:8cd9990c-c011-4680-8747-4dfad14863eb", - "x-request-time": "5.485" + "x-ms-routing-request-id": "JAPANEAST:20221012T122604Z:66f245a0-7832-4b72-bdfd-45735d21105a", + "x-request-time": "1.657" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8e707c2a-09b2-444b-b29d-f3b19c865f87", - "name": "8e707c2a-09b2-444b-b29d-f3b19c865f87", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3", + "name": "bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -428,7 +407,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "8e707c2a-09b2-444b-b29d-f3b19c865f87", + "version": "bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -458,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db112db8-ba0a-455b-a651-4cb32e96decd/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6bc0f588-42a3-4619-9e1b-e83f4b37c11d/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -468,11 +447,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:33:42.4087764\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:24:00.2604814\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:33:42.4087764\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:24:00.764425\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -484,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -492,11 +471,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:42 GMT", + "Date": "Wed, 12 Oct 2022 12:26:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6bdde325e53352bfc12ee4a799ee3f51-1a3162d4dad262dd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c4e40abaa2cd96f67b7211ac1d5aa07c-1aa64db560f668f5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -505,11 +484,11 @@ ], "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8535c89a-430b-4c8e-9a59-102b913a0ac1", - "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-correlation-request-id": "69628359-4eb2-4c58-84e5-1a56e81c4576", + "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233343Z:8535c89a-430b-4c8e-9a59-102b913a0ac1", - "x-request-time": "0.085" + "x-ms-routing-request-id": "JAPANEAST:20221012T122605Z:69628359-4eb2-4c58-84e5-1a56e81c4576", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -524,17 +503,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -548,7 +527,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -556,21 +535,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:43 GMT", + "Date": "Wed, 12 Oct 2022 12:26:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c0d438c93d55374d0e865c1c905beabf-cc702c06c5c498fb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d8d5a54731743bbb5ad7d775941c658d-9b785a46d5a04adf-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": "6c2963b1-0e8d-4b70-9c45-174bdd964af0", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "679c9cce-eff8-484e-bd70-571c44b72801", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233343Z:6c2963b1-0e8d-4b70-9c45-174bdd964af0", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T122605Z:679c9cce-eff8-484e-bd70-571c44b72801", + "x-request-time": "0.100" }, "ResponseBody": { "secretsType": "AccountKey", @@ -578,98 +557,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:33:43 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:05 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:33:43 GMT", + "Accept-Ranges": "bytes", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", + "Content-Type": "application/octet-stream", + "Date": "Wed, 12 Oct 2022 12:26:04 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "499", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:33:43 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "Ik1vbnRoIiwgIkF2ZXJhZ2UiLCAiMjAwNSIsICIyMDA2IiwgIjIwMDciLCAiMjAwOCIsICIyMDA5IiwgIjIwMTAiLCAiMjAxMSIsICIyMDEyIiwgIjIwMTMiLCAiMjAxNCIsICIyMDE1IgoiTWF5IiwgIDAuMSwgIDAsICAwLCAxLCAxLCAwLCAwLCAwLCAyLCAwLCAgMCwgIDAKIkp1biIsICAwLjUsICAyLCAgMSwgMSwgMCwgMCwgMSwgMSwgMiwgMiwgIDAsICAxCiJKdWwiLCAgMC43LCAgNSwgIDEsIDEsIDIsIDAsIDEsIDMsIDAsIDIsICAyLCAgMQoiQXVnIiwgIDIuMywgIDYsICAzLCAyLCA0LCA0LCA0LCA3LCA4LCAyLCAgMiwgIDMKIlNlcCIsICAzLjUsICA2LCAgNCwgNywgNCwgMiwgOCwgNSwgMiwgNSwgIDIsICA1CiJPY3QiLCAgMi4wLCAgOCwgIDAsIDEsIDMsIDIsIDUsIDEsIDUsIDIsICAzLCAgMAoiTm92IiwgIDAuNSwgIDMsICAwLCAwLCAxLCAxLCAwLCAxLCAwLCAxLCAgMCwgIDEKIkRlYyIsICAwLjAsICAxLCAgMCwgMSwgMCwgMCwgMCwgMCwgMCwgMCwgIDAsICAxCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", - "Date": "Thu, 29 Sep 2022 23:33:43 GMT", - "ETag": "\u00220x8DAA2730C55F88E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:33:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "S4rnPALWg/k=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:33:43 GMT", - "x-ms-meta-name": "be174f69-45d6-4b52-8147-6eb54190b726", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "363cf64f-33e5-4ceb-9cf4-c38bd7011b4e", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:26:06 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:33:43 GMT", - "ETag": "\u00220x8DAA2730C5EF7E8\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:33:43 GMT", + "Date": "Wed, 12 Oct 2022 12:26:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -677,7 +631,7 @@ "Connection": "keep-alive", "Content-Length": "1893", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -744,7 +698,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8e707c2a-09b2-444b-b29d-f3b19c865f87" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "outputs": { @@ -760,22 +714,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4513", + "Content-Length": "4559", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:33:48 GMT", + "Date": "Wed, 12 Oct 2022 12:26:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f1650480950e1cf1651bfee88f856cbb-67d55afb7652112b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8922e6dbe51dbc043c7fb6c4b12ec0af-0b0fdcce725d0a82-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e2e1415-2ab6-4ee3-b63d-994e2237dd9a", - "x-ms-ratelimit-remaining-subscription-writes": "1087", + "x-ms-correlation-request-id": "415064e2-3b80-458f-9383-81f172cf34d5", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233349Z:9e2e1415-2ab6-4ee3-b63d-994e2237dd9a", - "x-request-time": "3.546" + "x-ms-routing-request-id": "JAPANEAST:20221012T122612Z:415064e2-3b80-458f-9383-81f172cf34d5", + "x-request-time": "2.779" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -806,7 +760,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -814,7 +769,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -862,7 +818,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8e707c2a-09b2-444b-b29d-f3b19c865f87" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bd06f1ca-5bb9-4d75-bacc-ebc04f65eaf3" } }, "inputs": { @@ -899,8 +855,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:33:48.4919663\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:26:11.9904768\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json index 18a049874827b..443899687231c 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:24 GMT", + "Date": "Wed, 12 Oct 2022 12:25:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8e2bba13172587fa98a0fb372a186792-a5b3c67d8c943a4d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f9b41025f7e0727ff5ae689fcc30eda3-f78cf1c0bff5a5fd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "259b831e-8db7-4734-a0a0-7e839aa1f93d", - "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-correlation-request-id": "45177ea1-986d-46a9-b60b-ad7eefa89b08", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233125Z:259b831e-8db7-4734-a0a0-7e839aa1f93d", - "x-request-time": "0.114" + "x-ms-routing-request-id": "JAPANEAST:20221012T122508Z:45177ea1-986d-46a9-b60b-ad7eefa89b08", + "x-request-time": "0.106" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:24 GMT", + "Date": "Wed, 12 Oct 2022 12:25:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3254bb910e9f858389bd71edd6e99668-2d314d8cab7abb07-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-26034794f6067bcc541eb9e6f826172e-1e80b73ac4b2e769-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": "783e3b1a-c276-4e2c-9a9b-b586197c30e0", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "d40d528c-76d8-4957-9c09-024c7036dfa3", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233125Z:783e3b1a-c276-4e2c-9a9b-b586197c30e0", - "x-request-time": "0.100" + "x-ms-routing-request-id": "JAPANEAST:20221012T122509Z:d40d528c-76d8-4957-9c09-024c7036dfa3", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,132 +101,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:31:25 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:25:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:31:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:31:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aA0KDQpwYXJzZXIgPSBhcmdwYXJzZS5Bcmd1bWVudFBhcnNlcigpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWlucHV0X2RhdGEiLCB0eXBlPXN0cikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tZmlsZV9vdXRwdXRfZGF0YSIsIHR5cGU9c3RyKQ0KDQphcmdzID0gcGFyc2VyLnBhcnNlX2FyZ3MoKQ0KDQpwcmludCgiaW5wdXRfZGF0YSBwYXRoOiAlcyIgJSBhcmdzLmlucHV0X2RhdGEpDQoNCnByaW50KCJmaWxlcyBpbiBpbnB1dF9kYXRhIHBhdGg6ICIpDQphcnIgPSBvcy5saXN0ZGlyKGFyZ3MuaW5wdXRfZGF0YSkNCnByaW50KGFycikNCg0Kb3V0cHV0X2RpciA9IFBhdGgoYXJncy5maWxlX291dHB1dF9kYXRhKQ0KcHJpbnQoImZpbGVfb3V0cHV0X2RpciIsIG91dHB1dF9kaXIpDQpwcmludCgiZmlsZV9vdXRwdXRfZGlyIGV4aXRzIiwgUGF0aChvdXRwdXRfZGlyKS5leGlzdHMoKSkNCg0KTUxUYWJsZSA9IG91dHB1dF9kaXIgLyAiTUxUYWJsZSINCk1MVGFibGUud3JpdGVfdGV4dCgicGF0aHM6IikNCg0KZm9yIGZpbGVfbmFtZSBpbiBhcnI6DQogICAgZGF0YV9wYXRoID0gUGF0aChhcmdzLmlucHV0X2RhdGEgKyAiLyIgKyBmaWxlX25hbWUpDQogICAgcHJpbnQoIlByb2Nlc3Npbmcge30iLmZvcm1hdChkYXRhX3BhdGgpKQ0KICAgIChvdXRwdXRfZGlyIC8gZGF0YV9wYXRoLm5hbWUpLndyaXRlX3RleHQoZmlsZV9uYW1lKQ0KICAgIHdpdGggTUxUYWJsZS5vcGVuKG1vZGU9ImEiKSBhcyBmOg0KICAgICAgICBmLndyaXRlKGYiXG4gIC0gZmlsZTogLi97ZGF0YV9wYXRoLm5hbWV9IikNCiAgICAjIHNodXRpbC5tb3ZlKGRhdGFfcGF0aCwgUGF0aChvdXRwdXRfZGlyIC8gZGF0YV9wYXRoLm5hbWUpKQ0KICAgICMgTUxUYWJsZS53cml0ZV90ZXh0KGYiXHRcdC1cdGZpbGU6XHQuL3tkYXRhX3BhdGgubmFtZX0iKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "DhunCanKGufSVuPKEYN51w==", - "Date": "Thu, 29 Sep 2022 23:31:25 GMT", - "ETag": "\u00220x8DAA272BA0D09F7\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:25 GMT", + "Date": "Wed, 12 Oct 2022 12:25:09 GMT", + "ETag": "\u00220x8DA9D4A193DC816\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:58:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "gWKCKdhBsnA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/score.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1377", - "Content-MD5": "ssg/A2ubXwbxCqYfP/U6Mw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:31:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "IyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiMgQ29weXJpZ2h0IChjKSBNaWNyb3NvZnQgQ29ycG9yYXRpb24uIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQojIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KIiIiVGhpcyBtb2R1bGUgc2ltdWxhdGUgcnVuKCkgd2hpY2ggY2FuIHNwZWNpZnkgc3VjY2VlZCBldmVyeSBuIGl0ZW1zIGZyb20gYXJndW1lbnQuIiIiDQppbXBvcnQgYXJncGFyc2UNCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aA0KDQoNCmRlZiBpbml0KCk6DQogICAgIiIiSW5pdC4iIiINCiAgICBnbG9iYWwgT1VUUFVUX1BBVEgNCg0KICAgIHBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKGFsbG93X2FiYnJldj1GYWxzZSwgZGVzY3JpcHRpb249IlBhcmFsbGVsUnVuU3RlcCBBZ2VudCIpDQogICAgcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1qb2Jfb3V0cHV0X3BhdGgiLCB0eXBlPXN0ciwgZGVmYXVsdD0wKQ0KICAgIGFyZ3MsIF8gPSBwYXJzZXIucGFyc2Vfa25vd25fYXJncygpDQogICAgT1VUUFVUX1BBVEggPSBhcmdzLmpvYl9vdXRwdXRfcGF0aA0KICAgIHByaW50KCJQYXNzIHRocm91Z2ggaW5pdCBkb25lIikNCg0KDQpkZWYgcnVuKG1pbmlfYmF0Y2gpOg0KICAgICIiIlJ1bi4iIiINCg0KICAgIGZvciBmaWxlX3BhdGggaW4gbWluaV9iYXRjaDoNCiAgICAgICAgZmlsZSA9IFBhdGgoZmlsZV9wYXRoKQ0KICAgICAgICBwcmludCgiUHJvY2Vzc2luZyB7fSIuZm9ybWF0KGZpbGUpKQ0KICAgICAgICBhc3NlcnQgZmlsZS5leGlzdHMoKQ0KDQogICAgICAgICMgVHdvIGN1c3RvbWVycyByZXBvcnRlZCB0cmFuc2llbnQgZXJyb3Igd2hlbiB1c2luZyBPdXRwdXRGaWxlRGF0YXNldENvbmZpZy4NCiAgICAgICAgIyBJdCBoaXRzICJGaWxlTm90Rm91bmRFcnJvciIgd2hlbiB3cml0aW5nIHRvIGEgZmlsZSBpbiB0aGUgb3V0cHV0X2RpciBmb2xkZXIsDQogICAgICAgICMgIGV2ZW4gdGhlIGZvbGRlciBkaWQgZXhpc3QgcGVyIGxvZ3MuDQogICAgICAgICMgVGhpcyBpcyB0byBzaW11bGF0ZSBzdWNoIGNhc2UgYW5kIGhvcGUgd2UgY2FuIHJlcHJvIGluIG91ciBnYXRlZCBidWlsZC4NCiAgICAgICAgb3V0cHV0X2RpciA9IFBhdGgoT1VUUFVUX1BBVEgpDQogICAgICAgIHByaW50KCJvdXRwdXRfZGlyIiwgb3V0cHV0X2RpcikNCiAgICAgICAgcHJpbnQoIm91dHB1dF9kaXIgZXhpdHMiLCBQYXRoKG91dHB1dF9kaXIpLmV4aXN0cygpKQ0KICAgICAgICAoUGF0aChvdXRwdXRfZGlyKSAvIGZpbGUubmFtZSkud3JpdGVfdGV4dChmaWxlX3BhdGgpDQoNCiAgICByZXR1cm4gbWluaV9iYXRjaA0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "ssg/A2ubXwbxCqYfP/U6Mw==", - "Date": "Thu, 29 Sep 2022 23:31:25 GMT", - "ETag": "\u00220x8DAA272BA0EB769\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "D3hh/pJKVNA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Fri, 23 Sep 2022 09:57:59 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "3af49689-e732-4d3f-9854-43df40223df3", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:31:25 GMT", - "x-ms-meta-name": "1992c9ec-9950-4a10-b848-21eccf196b5e", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:25:10 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:31:25 GMT", - "ETag": "\u00220x8DAA272BA182BEE\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:25 GMT", + "Date": "Wed, 12 Oct 2022 12:25:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -234,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -244,31 +185,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "822", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:25 GMT", + "Date": "Wed, 12 Oct 2022 12:25:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7107fe75af2268661cd056bd7a1e3a75-f6fe9955fa7aa574-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b784c86fdb2bfc69e59c470b3e778b76-6ce008afbda9b973-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d30f2a6-7033-421f-b8e2-54a28441fa84", - "x-ms-ratelimit-remaining-subscription-writes": "1107", + "x-ms-correlation-request-id": "79881ea0-824a-4c4a-92d6-69e4a63eba5d", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233126Z:0d30f2a6-7033-421f-b8e2-54a28441fa84", - "x-request-time": "0.621" + "x-ms-routing-request-id": "JAPANEAST:20221012T122511Z:79881ea0-824a-4c4a-92d6-69e4a63eba5d", + "x-request-time": "0.206" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -280,14 +225,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:31:26.2712278\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:58:01.1651738\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:31:26.2712278\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:25:11.502554\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -301,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1202", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -335,7 +280,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -353,24 +298,24 @@ "Cache-Control": "no-cache", "Content-Length": "2209", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:29 GMT", + "Date": "Wed, 12 Oct 2022 12:25:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-de7774e08106e28dde35011024874eea-91cec80850d5771c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d5e1ddc4a3558a3df7323e359dc0318f-0a5f53f848d9c745-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "855d23da-916b-4dd8-a32e-c5484c45c499", - "x-ms-ratelimit-remaining-subscription-writes": "1106", + "x-ms-correlation-request-id": "fb29475c-9225-4553-a102-306307fd892c", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233130Z:855d23da-916b-4dd8-a32e-c5484c45c499", - "x-request-time": "3.597" + "x-ms-routing-request-id": "JAPANEAST:20221012T122513Z:fb29475c-9225-4553-a102-306307fd892c", + "x-request-time": "1.686" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", - "name": "a117d1fb-2606-4184-a51f-66f5509ae349", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", + "name": "b6a05c03-ad84-46ce-b326-ecc8c5d44726", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -380,7 +325,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a117d1fb-2606-4184-a51f-66f5509ae349", + "version": "b6a05c03-ad84-46ce-b326-ecc8c5d44726", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -398,7 +343,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -418,11 +363,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:31:29.8242337\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:41:10.7336842\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:31:29.8242337\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:41:11.2470066\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -434,7 +379,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -442,11 +387,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:29 GMT", + "Date": "Wed, 12 Oct 2022 12:25:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-70f3e8f6a0f20c742c8762aac7af7b1d-47ea5f0b04ae0135-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-92dafa6ea1a817b5e7a855f19a8f98b3-17060e551f2c7299-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -455,11 +400,11 @@ ], "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4377429d-2328-4355-acf5-0a2058a9e7ef", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "d4bcf69c-8dd8-4a2d-ba83-5380fcb334ec", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233130Z:4377429d-2328-4355-acf5-0a2058a9e7ef", - "x-request-time": "0.091" + "x-ms-routing-request-id": "JAPANEAST:20221012T122514Z:d4bcf69c-8dd8-4a2d-ba83-5380fcb334ec", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -474,17 +419,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -498,7 +443,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -506,21 +451,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", + "Date": "Wed, 12 Oct 2022 12:25:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-da379ce903b65419f40f2cb431f80909-c4ad28f148d443c7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c4d37a309bb47c8e96108eada121a38b-9e7cd15ab39c8211-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": "29599161-4e13-4b48-9dc9-797658398f68", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "7a78304f-8b4a-4d3a-be5f-93195b20fa25", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233130Z:29599161-4e13-4b48-9dc9-797658398f68", - "x-request-time": "0.092" + "x-ms-routing-request-id": "JAPANEAST:20221012T122514Z:7a78304f-8b4a-4d3a-be5f-93195b20fa25", + "x-request-time": "0.105" }, "ResponseBody": { "secretsType": "AccountKey", @@ -528,234 +473,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:31:30 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:25:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:31:31 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAApklEQVR4nGNgGG4gZOf86TYqOCTv/QOCj8egYJUJiqRzkUfR4sf/HgKV/Hr6718PpnZBJz5nZ2dr0Tf/snDaH/z3ohAuObGX/4Nxamz8904Hl5z1z392ODW2/tvNikuO8\u002BwPK5wa6/5twynn/fuDJS454bv/luGSYz7977YyLkm1f/98ccnJP/hXzIhLsvXfPxNccraf8EhW/vt3WwO35HmcUYUFAADoRUgXjdCLBAAAAABJRU5ErkJggg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", - "ETag": "\u00220x8DAA272BD3EC11A\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:31 GMT", + "Date": "Wed, 12 Oct 2022 12:25:13 GMT", + "ETag": "\u00220x8DA9D49DDA8E2B9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:56:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "udv6YBRBC3o=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/2.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "181", - "Content-MD5": "ZFD2PtrWo3KKbhKY8o6U0Q==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:31:31 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAAfElEQVR4nGNgGARA7V8ubsnwP0G4Jds/4pbT/TINt2TIP3vckqfuc\u002BOUU/h3A7fG\u002BH\u002BHcUv2/PPFKWf59iwHTsma/0txm7r6XyBOOYkX13FrrPg3H7fk9H99uCWf/HPCKWf7G49k77\u002BzzLjkuK7/q8SpkfXYBi7c7qEXAACSSyaQJMO2CwAAAABJRU5ErkJggg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "ZFD2PtrWo3KKbhKY8o6U0Q==", - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", - "ETag": "\u00220x8DAA272BD40BCA5\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "JgB64NheC6Y=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/3.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "266", - "Content-MD5": "u9vq0WTYgE2NVJ8dagwc/w==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:31:31 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAA0UlEQVR4nGNgGGDAPe3vKXlckqq/f//NxiEnehS3ZN6\u002B30DJlbl22CT//gZJ/v59xxhTbtv/v0Dw6h6QwJCzvwvSOdnXruH370w0OYXnQBPvdHIxMMg/\u002B/25kBXDF3tEwMxcoDJldMmTchCm/AkMSYQzFE79/7sERbLn928YE9PYmzBJUXug057JYZecAPTQXVsGrJLb7gIlt6D589bfv56eT/7\u002BBQcTmhxDIThYIcRkdElguEAkn\u002B1V5kKXZLDrg0jiiE\u002BPdb/XunvIYZekGwAAcICQlxrnDN8AAAAASUVORK5CYII=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "u9vq0WTYgE2NVJ8dagwc/w==", - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", - "ETag": "\u00220x8DAA272BD42430C\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "EysDbvmWNSg=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/MLTable", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "84", - "Content-MD5": "MqcWyV2Ifb9O1CFXsVXNBg==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:31:31 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cGF0aHM6DQogIC0gZmlsZTogLi8wLnBuZw0KICAtIGZpbGU6IC4vMS5wbmcNCiAgLSBmaWxlOiAuLzIucG5nDQogIC0gZmlsZTogLi8zLnBuZw0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "MqcWyV2Ifb9O1CFXsVXNBg==", - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", - "ETag": "\u00220x8DAA272BD421C00\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "0CgkdSBqsos=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/1.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "255", - "Content-MD5": "4soERrkbkp\u002BoJQfBCzPTxw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:31:31 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAAxklEQVR4nGNgoDUoqV39//\u002B0WKxyK/\u002BCwS05HHJX\u002Bzb8/VuFKWfy6\u002B8lBR4GtnN/ezAlfX9fkgRSVT/\u002BOmIxVl4IRF78i1USDEq//z3GhUPO5/vf5/a4NDb8/TsBl9yGb3/n8\u002BCQk3z196UyLo3H/v7txSXn9\u002BPvXlyGCp/Ao7Ht79\u002B1uDQy/Pj7VxKXHEhSWwQIWBlYRURUp02bNpkLRRIMVvQvg7KqEZLr/iLAz\u002B/fV5aWWiKZW1ZdXQ3SNLu6WhOn5QMMADeOcLN/VWHoAAAAAElFTkSuQmCC", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "4soERrkbkp\u002BoJQfBCzPTxw==", - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", - "ETag": "\u00220x8DAA272BD43063A\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:31 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "GFNu8HXRRJ0=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Fri, 23 Sep 2022 09:56:19 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "6d38069b-69f7-4247-bed0-fffe996f3098", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "315ab246-e719-41ed-9ad8-28f2f315a8e2", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/0.png?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:31:31 GMT", - "x-ms-meta-name": "776195be-0520-410c-baf6-30d470c2ba98", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "9e2621cd-06f1-4034-af15-7e796b2f5bb7", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:25:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:31:30 GMT", - "ETag": "\u00220x8DAA272BD4B9081\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:31 GMT", + "Date": "Wed, 12 Oct 2022 12:25:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -763,7 +547,7 @@ "Connection": "keep-alive", "Content-Length": "1810", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -793,7 +577,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -812,7 +596,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -828,21 +612,21 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3999", + "Content-Length": "4045", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:35 GMT", + "Date": "Wed, 12 Oct 2022 12:25:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-676a102b6debd873bd91f66f449cae6f-0da2245ad47296be-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-574f83d0313e831319b4e2988fe4ae5e-ff28f84898611a58-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f61a1cf2-89d9-4ebe-9550-fea7089c80da", - "x-ms-ratelimit-remaining-subscription-writes": "1105", + "x-ms-correlation-request-id": "3c56c481-8391-4a48-bff0-08eb254be009", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233135Z:f61a1cf2-89d9-4ebe-9550-fea7089c80da", + "x-ms-routing-request-id": "JAPANEAST:20221012T122522Z:3c56c481-8391-4a48-bff0-08eb254be009", "x-request-time": "2.964" }, "ResponseBody": { @@ -874,7 +658,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -882,7 +667,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -907,7 +693,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -926,7 +712,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -944,21 +730,21 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:31:35.3091308\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:25:21.2832295\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000/cancel?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -966,31 +752,31 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:36 GMT", + "Date": "Wed, 12 Oct 2022 12:25:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "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-02", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "07543723-c561-4540-b866-4b3366393282", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "cc012320-6286-41bf-b6b9-10f8fdd844c3", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233137Z:07543723-c561-4540-b866-4b3366393282", - "x-request-time": "0.998" + "x-ms-routing-request-id": "JAPANEAST:20221012T122524Z:cc012320-6286-41bf-b6b9-10f8fdd844c3", + "x-request-time": "0.785" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -998,49 +784,49 @@ "Cache-Control": "no-cache", "Content-Length": "2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:31:37 GMT", + "Date": "Wed, 12 Oct 2022 12:25:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "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": "04c1ffbf-84b8-4bcf-a0e3-4f21e0d60f10", - "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-correlation-request-id": "d37946e8-b291-4229-b2f0-e2339cea3347", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233137Z:04c1ffbf-84b8-4bcf-a0e3-4f21e0d60f10", - "x-request-time": "0.032" + "x-ms-routing-request-id": "JAPANEAST:20221012T122525Z:d37946e8-b291-4229-b2f0-e2339cea3347", + "x-request-time": "0.073" }, "ResponseBody": {} }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:32:06 GMT", + "Date": "Wed, 12 Oct 2022 12:25:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3e35005482d7302446f1c7d357622991-f4aa29542a57c84c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-583c4df91be0895b5dd2c204a41e9621-e7f6483800ccc7fa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5d25edd-72f7-4b2d-bd33-7cab53dbcb0c", - "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-correlation-request-id": "b3f0623a-fbe0-4680-b083-9802daeb419c", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233207Z:b5d25edd-72f7-4b2d-bd33-7cab53dbcb0c", - "x-request-time": "0.030" + "x-ms-routing-request-id": "JAPANEAST:20221012T122555Z:b3f0623a-fbe0-4680-b083-9802daeb419c", + "x-request-time": "0.060" }, "ResponseBody": null } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json index c8504604dea51..8d413df3c551d 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:34 GMT", + "Date": "Wed, 12 Oct 2022 12:06:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-36095fc9e01e0f59499869172a8bfaa5-1f48c441880a59a9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-92947c440b7f855900b84389d4e015f5-3ce7db78fafd9dfe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e805641-3ede-468b-8d49-51080d3890a2", - "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-correlation-request-id": "45a280a2-7f1a-4e7f-a622-f4cc19bf3a5c", + "x-ms-ratelimit-remaining-subscription-reads": "11911", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234635Z:7e805641-3ede-468b-8d49-51080d3890a2", - "x-request-time": "0.086" + "x-ms-routing-request-id": "JAPANEAST:20221012T120606Z:45a280a2-7f1a-4e7f-a622-f4cc19bf3a5c", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +43,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,29 +67,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:35 GMT", + "Date": "Wed, 12 Oct 2022 12:06:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ce8556759baa265bb21df00b500cbdac-8b86a9ced6cfa678-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-64afb3bf0bca44bf6f6e5ba5c68ba185-522680d89acc1378-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f25dcfc-0022-4831-9ef6-a99d3ec8200f", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "0cc535b0-2f84-4b60-bc52-b86f09c4f42c", + "x-ms-ratelimit-remaining-subscription-writes": "1146", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234636Z:9f25dcfc-0022-4831-9ef6-a99d3ec8200f", - "x-request-time": "0.135" + "x-ms-routing-request-id": "JAPANEAST:20221012T120607Z:0cc535b0-2f84-4b60-bc52-b86f09c4f42c", + "x-request-time": "0.250" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +95,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:36 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:07 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +112,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:46:35 GMT", - "ETag": "\u00220x8DAA269B39E05D8\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:26:49 GMT", + "Date": "Wed, 12 Oct 2022 12:06:07 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +123,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:26:49 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5559a10b-f428-4259-a127-d246099b26e8", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:36 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:07 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:35 GMT", + "Date": "Wed, 12 Oct 2022 12:06:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +156,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +169,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -185,35 +179,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "813", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:35 GMT", + "Date": "Wed, 12 Oct 2022 12:06:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-de6aaa95e60d9023984edb0a811df764-6cf6b1809b05b674-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-928fcef60197c4fab5c3e34b96e42236-a23a671fb842437f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7172e19-80af-4363-b1a9-df1207dda96f", - "x-ms-ratelimit-remaining-subscription-writes": "1156", + "x-ms-correlation-request-id": "08ac8641-8aed-40ca-bc36-50415b372726", + "x-ms-ratelimit-remaining-subscription-writes": "1092", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234636Z:e7172e19-80af-4363-b1a9-df1207dda96f", - "x-request-time": "0.176" + "x-ms-routing-request-id": "JAPANEAST:20221012T120608Z:08ac8641-8aed-40ca-bc36-50415b372726", + "x-request-time": "0.183" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,14 +215,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-29T22:26:51.4133291\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:36.5309435\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:06:08.3946543\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -246,7 +236,7 @@ "Connection": "keep-alive", "Content-Length": "796", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -256,7 +246,7 @@ "isArchived": false, "componentSpec": { "command": "ls ${{inputs.automl_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -279,24 +269,24 @@ "Cache-Control": "no-cache", "Content-Length": "1708", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:37 GMT", + "Date": "Wed, 12 Oct 2022 12:06:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2e81ae8b7eaca5a89ea3915cdb15afd5-b4b23c8bf4bc3fb0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9ab6df8d5789c3eef41ea2d01f2f2c41-9112f9bd45c5b1e6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5857c33-8885-4ed3-a7d3-121a01d6baae", - "x-ms-ratelimit-remaining-subscription-writes": "1155", + "x-ms-correlation-request-id": "ebbe1245-1a0f-4fdc-b7e5-a10ebaf5cd29", + "x-ms-ratelimit-remaining-subscription-writes": "1091", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234638Z:d5857c33-8885-4ed3-a7d3-121a01d6baae", - "x-request-time": "1.945" + "x-ms-routing-request-id": "JAPANEAST:20221012T120610Z:ebbe1245-1a0f-4fdc-b7e5-a10ebaf5cd29", + "x-request-time": "1.335" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3d0497ab-7a18-44b9-823f-df25ac7e4d1d", - "name": "3d0497ab-7a18-44b9-823f-df25ac7e4d1d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa425440-3ae8-4114-80f5-b391ba1d5f14", + "name": "aa425440-3ae8-4114-80f5-b391ba1d5f14", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -306,7 +296,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "3d0497ab-7a18-44b9-823f-df25ac7e4d1d", + "version": "aa425440-3ae8-4114-80f5-b391ba1d5f14", "display_name": "show_output", "is_deterministic": "True", "type": "command", @@ -316,7 +306,7 @@ "optional": "False" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "resources": { "instance_count": "1" @@ -326,11 +316,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:38.1536596\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:59.6157826\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:38.1536596\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:00.1291471\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -342,32 +332,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:38 GMT", + "Date": "Wed, 12 Oct 2022 12:06:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3ab2f209328a6928d2813b0b0b46f32d-e3f53d7f6c7fb474-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-61c841a52c781fa1b7687265c83be3a7-cdc21be7f87a104b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3034e87-749b-4ad2-a4cb-671cd2d9861e", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "d0699f87-db5c-4be1-b244-cf8b5a6d0af9", + "x-ms-ratelimit-remaining-subscription-reads": "11910", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234638Z:c3034e87-749b-4ad2-a4cb-671cd2d9861e", - "x-request-time": "0.079" + "x-ms-routing-request-id": "JAPANEAST:20221012T120610Z:d0699f87-db5c-4be1-b244-cf8b5a6d0af9", + "x-request-time": "0.125" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -382,17 +368,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -406,29 +392,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:38 GMT", + "Date": "Wed, 12 Oct 2022 12:06:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-45e992923797787345f42bfbbaf5109d-215da2eab39a1213-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b3c254aa67302c00352a4298a136c8b7-ae4ac5f3c8504109-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72e7f4c2-7fbc-4e92-bd28-36af69a1aa00", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "7ad18f27-43fc-43ca-a9f0-341d80a92469", + "x-ms-ratelimit-remaining-subscription-writes": "1145", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234639Z:72e7f4c2-7fbc-4e92-bd28-36af69a1aa00", - "x-request-time": "0.084" + "x-ms-routing-request-id": "JAPANEAST:20221012T120611Z:7ad18f27-43fc-43ca-a9f0-341d80a92469", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -436,127 +420,68 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train/MLTable", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "161", "Content-MD5": "h3r6/Xpef\u002BHb9IhiMc/SFQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:39 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cGF0aHM6DQogIC0gZmlsZTogLi9ob3VzZV9wcmljaW5nX3RyYWluLmNzdg0KdHJhbnNmb3JtYXRpb25zOg0KICAtIHJlYWRfZGVsaW1pdGVkOg0KICAgICAgZGVsaW1pdGVyOiAnLCcNCiAgICAgIGVuY29kaW5nOiAnYXNjaWknDQogICAgICBlbXB0eV9hc19zdHJpbmc6IGZhbHNlDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "h3r6/Xpef\u002BHb9IhiMc/SFQ==", - "Date": "Thu, 29 Sep 2022 23:46:38 GMT", - "ETag": "\u00220x8DAA274DA8F27B8\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:39 GMT", + "Date": "Wed, 12 Oct 2022 12:06:11 GMT", + "ETag": "\u00220x8DAAC46EBCDA425\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:43:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "9OYeRJsE7qc=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train/house_pricing_train.csv", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "21888", - "Content-MD5": "aYIVb00fQCzJCWMBOtuosw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:39 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "SWQsU2FsZVByaWNlDQoxNDYxLDExNTIyMC4wDQoxNDYyLDEzMzQwMC4wDQoxNDYzLDE2MzUwMC4wDQoxNDY0LDE5MjUwMC4wDQoxNDY1LDIyMzk1MC4wDQoxNDY2LDE3NjMwMC4wDQoxNDY3LDE3NjU5MC4wDQoxNDY4LDE3NzQzOS4wDQoxNDY5LDE3ODUwNy45DQoxNDcwLDExMTU1MC4wDQoxNDcxLDE4MzAwMC4wDQoxNDcyLDg5MjAwLjANCjE0NzMsMTA1NTQwLjANCjE0NzQsMTQ5MjQwLjANCjE0NzUsMTU0MzM1LjANCjE0NzYsMzk3NjI4LjMNCjE0NzcsMjcwNTk1LjANCjE0NzgsMzEwOTIyLjYNCjE0NzksMjg5MzQyLjYNCjE0ODAsNDQxNDIxLjINCjE0ODEsMzA1NzQ1LjANCjE0ODIsMjEyNjkxLjINCjE0ODMsMTc5NDEzLjANCjE0ODQsMTc4NjA5LjUNCjE0ODUsMTYzOTczLjINCjE0ODYsMjEwNjUwLjANCjE0ODcsMzE5ODY2LjgNCjE0ODgsMjQzMTcyLjgNCjE0ODksMjA4MTY2LjANCjE0OTAsMTkyODQ1LjANCjE0OTEsMTg2MTUwLjANCjE0OTIsOTM2MDAuMA0KMTQ5MywxOTIyMDUuMA0KMTQ5NCwyODk3MTAuMA0KMTQ5NSwyNzU1NjIuNA0KMTQ5NiwyMDcyMTAuMA0KMTQ5NywxOTQ5NzAuMA0KMTQ5OCwxNTU2MzcuNQ0KMTQ5OSwxNTU3NTAuMA0KMTUwMCwxNTMyMjcuOTYwMDAwMDAwMDINCjE1MDEsMTgxOTcwLjANCjE1MDIsMTQ5MjI1LjANCjE1MDMsMjkyMjk4LjQNCjE1MDQsMjM3NzgwLjANCjE1MDUsMjE4MjA3LjkNCjE1MDYsMTk3NTMwLjANCjE1MDcsMjMzMDAwLjANCjE1MDgsMjAzOTM1LjANCjE1MDksMTY3NTU1LjANCjE1MTAsMTM2NzMwLjANCjE1MTEsMTM1OTAwLjANCjE1MTIsMTQ3NDYwLjANCjE1MTMsMTQ0OTMwLjANCjE1MTQsMTU1OTM2LjgNCjE1MTUsMTg3NzUwLjANCjE1MTYsMTQ5Njg1LjANCjE1MTcsMTQ0NTk1LjANCjE1MTgsMTI5MjQwLjANCjE1MTksMjE2MzMzLjkNCjE1MjAsMTQwOTkwLjANCjE1MjEsMTM1OTAwLjANCjE1MjIsMTU1NTcwLjANCjE1MjMsMTEyNjg1LjANCjE1MjQsMTI2NjEyLjUNCjE1MjUsMTI1NjUwLjANCjE1MjYsMTIwMjc1LjANCjE1MjcsMTEyMjAwLjANCjE1MjgsMTI3OTUwLjANCjE1MjksMTM0MTU1LjANCjE1MzAsMTUxMjI1LjANCjE1MzEsMTQ0NDI4LjcNCjE1MzIsMTA3NzcwLjANCjE1MzMsMTA2MzkwLjANCjE1MzQsMTI4Mzg3LjUNCjE1MzUsMTUxMjcwLjANCjE1MzYsMTE1MDgwLjANCjE1MzcsMTA1NDc1LjANCjE1MzgsMjA4ODkwLjANCjE1MzksMjM0MTkwLjANCjE1NDAsMTMwMTE4LjcNCjE1NDEsMTYwODQwLjANCjE1NDIsMTQ5NjcxLjgNCjE1NDMsMjI1MDQ3LjkNCjE1NDQsNzk0MDAuMA0KMTU0NSwxMDg0NDAuMA0KMTU0NiwxMjkwMDAuMA0KMTU0NywxMDU5NTAuMA0KMTU0OCwxMTE5NTAuMA0KMTU0OSwxMTIxMzAuMA0KMTU1MCwxNTY5NTAuMA0KMTU1MSwxMzIzNDAuMA0KMTU1MiwxMzg3NDAuMA0KMTU1MywxMjkxNDAuMA0KMTU1NCwxMDI2MDAuOA0KMTU1NSwxNjEzMzUuMA0KMTU1NiwxMDAzNzAuMA0KMTU1NywxMjU2MzAuMA0KMTU1OCwxMDczNDAuMA0KMTU1OSwxMDUwNjAuMA0KMTU2MCwxNTU1NzguNw0KMTU2MSwxMzcyNDYuNA0KMTU2MiwxMzAzMjAuMA0KMTU2MywxMTQxNTAuMA0KMTU2NCwxNTMxOTYuMA0KMTU2NSwxNDU2NDAuMA0KMTU2NiwxNzQxMzAuMA0KMTU2Nyw5MDIzMC4wDQoxNTY4LDIxNjU0MC4wDQoxNTY5LDE1NTMyNS4wDQoxNTcwLDExOTYyMC4wDQoxNTcxLDE1MzAwMC4wDQoxNTcyLDEzMjY2MC4wDQoxNTczLDIzMjI0My44DQoxNTc0LDEzNDgyMC4wDQoxNTc1LDE3MzQ1NS4wDQoxNTc2LDIwMTA1MC4wDQoxNTc3LDIwNzgzNi4wDQoxNTc4LDEzMzk1MC40DQoxNTc5LDE1MTIwMC4wDQoxNTgwLDE4ODEwMC4wDQoxNTgxLDE0MzkwMC4wDQoxNTgyLDExNjI0MC4wDQoxNTgzLDM1Mjc4MC4wDQoxNTg0LDI0MDA4Mi41DQoxNTg1LDEzNzMzMy4zMzMzMzMzMzMzNA0KMTU4Niw4MDQxMC4wDQoxNTg3LDEwNTU0MC4wDQoxNTg4LDEyODU2MC4wDQoxNTg5LDEwMjk1MC4wDQoxNTkwLDEzMTY1MC4wDQoxNTkxLDEwMDk3NS4wDQoxNTkyLDE0MTAwMC4wDQoxNTkzLDEyMTMxMC4wDQoxNTk0LDEyNDAzMC42DQoxNTk1LDE0NDE1MC4wDQoxNTk2LDIzMjQwMC4wDQoxNTk3LDE0NDk5NS4zDQoxNTk4LDE5NTQ2Ni41DQoxNTk5LDIxNjkwMC4wDQoxNjAwLDE4NTMwMC4wDQoxNjAxLDcyNTYwLjANCjE2MDIsMTA5NjUwLjQNCjE2MDMsMTAzNzAwLjANCjE2MDQsMjQzNTUwLjANCjE2MDUsMjQ4NTk2LjANCjE2MDYsMTY4NzUwLjANCjE2MDcsMjEwNDQwLjANCjE2MDgsMjE2MzIwLjANCjE2MDksMjA4MTMwLjENCjE2MTAsMTU5MjkzLjgNCjE2MTEsMTQ5NzQwLjANCjE2MTIsMTgxNzkwLjUNCjE2MTMsMTY1NzkwLjANCjE2MTQsMTE0ODUwLjANCjE2MTUsOTIzMDAuMA0KMTYxNiw5MjMwMC4wDQoxNjE3LDk1NjAwLjANCjE2MTgsMTMyNTAwLjANCjE2MTksMTM2NTkwLjANCjE2MjAsMTYxMDYwLjANCjE2MjEsMTMyNzkwLjANCjE2MjIsMTI5NTg4LjcNCjE2MjMsMzA4NDAwLjANCjE2MjQsMjAxMzc1LjANCjE2MjUsMTEyNzE1LjANCjE2MjYsMTcyMTYwLjANCjE2MjcsMTg4NTUwLjANCjE2MjgsMjYzMDgwLjANCjE2MjksMTc3MDQ2LjUNCjE2MzAsMzA2MjY1LjANCjE2MzEsMjI5MjQwLjANCjE2MzIsMjM4MzAwLjANCjE2MzMsMTUyNzIwLjANCjE2MzQsMTgwMDAwLjANCjE2MzUsMTc3MzkwLjANCjE2MzYsMTY4ODkwLjANCjE2MzcsMTYwNjQ1LjANCjE2MzgsMjAwMzQwLjANCjE2MzksMTc3ODIwLjANCjE2NDAsMjU1MDU2LjANCjE2NDEsMTg4OTk5LjANCjE2NDIsMjIzMTUwLjANCjE2NDMsMjQ2NjUwLjANCjE2NDQsMjMzNjMwLjANCjE2NDUsMjAzOTM1LjANCjE2NDYsMTUxNDMwLjANCjE2NDcsMTY1NjAwLjANCjE2NDgsMTQ2MjEwLjANCjE2NDksMTM3OTYwLjANCjE2NTAsMTEzMDI1LjANCjE2NTEsMTMwNjI1LjANCjE2NTIsODY2NTAuMA0KMTY1Myw5NTI1MC4wDQoxNjU0LDE1Njg0MC4wDQoxNjU1LDE2NzYyMC4wDQoxNjU2LDE1NTAwMC4wDQoxNjU3LDE1OTkwMC4wDQoxNjU4LDE1NTE1MC4wDQoxNjU5LDE1MDg2MC4wDQoxNjYwLDE1MjQwMC4wDQoxNjYxLDQyNTM5MS40DQoxNjYyLDM5NzMzNC4zDQoxNjYzLDM4ODg3OC4zDQoxNjY0LDQ2ODg1NC44DQoxNjY1LDM1Mzg0Ny44DQoxNjY2LDI2MjUwMC4wDQoxNjY3LDMyOTU3OS4wDQoxNjY4LDM0OTMwOC4zDQoxNjY5LDI4NzM4Mi4yDQoxNjcwLDM1NDg2MC4wDQoxNjcxLDI0NDQ2Mi44DQoxNjcyLDQxMTc1NC44DQoxNjczLDMyMjk2NC41DQoxNjc0LDI2MTIzOC40DQoxNjc1LDE4NTczMC4wDQoxNjc2LDE4MjEzOC4yDQoxNjc3LDIyNDg5Ny4xDQoxNjc4LDM5MTg3NS4wDQoxNjc5LDM0NzM3MC4yDQoxNjgwLDM0ODYzNS43DQoxNjgxLDI5MTMyMC4yDQoxNjgyLDI3OTQ2OS4zDQoxNjgzLDE3NTU3NS4wDQoxNjg0LDE3NzY2My4wDQoxNjg1LDE3MDM1OC4wDQoxNjg2LDE2MzE1NC41DQoxNjg3LDE2NTA4OS43DQoxNjg4LDE3Njc1MC4wDQoxNjg5LDE3NjgwMi41DQoxNjkwLDE4MTQ5OC4wDQoxNjkxLDE2MjA5OS4wDQoxNjkyLDI1OTM0My41DQoxNjkzLDE2Mzk3My4yDQoxNjk0LDE3ODUzMC4wDQoxNjk1LDE3MDcwMC4wDQoxNjk2LDI4MDYwNS4wDQoxNjk3LDE2OTQ1MC4wDQoxNjk4LDM1NjYyNC4zDQoxNjk5LDMyNzY5MC4wDQoxNzAwLDIyMzc1MC4wDQoxNzAxLDI3NTEzMC4wDQoxNzAyLDI5NTI1Mi42DQoxNzAzLDMwNTk3NS4wDQoxNzA0LDMxNzM0OC43DQoxNzA1LDIzNzk0MS4yDQoxNzA2LDM4ODg5Ny4wDQoxNzA3LDIyMzY5NC41DQoxNzA4LDIyNDQ3MS44DQoxNzA5LDM0MTM3My40DQoxNzEwLDI0NjU0NC42DQoxNzExLDI0MTg1Mi4yDQoxNzEyLDI2OTg5My41DQoxNzEzLDIzMDIxNi4xDQoxNzE0LDIxNTg0MC4wDQoxNzE1LDE5OTM4MC4wDQoxNzE2LDE5MDEzOC41DQoxNzE3LDE2NzI1OS41DQoxNzE4LDEzODUwMC4wDQoxNzE5LDIxMTEzNS4wDQoxNzIwLDI1NTMwNi4xDQoxNzIxLDE3NDE5MC4wDQoxNzIyLDEzNzA1MC4wDQoxNzIzLDE1MjY5MC4wDQoxNzI0LDIzMzI5Ny4wDQoxNzI1LDIyMzU1MC4wDQoxNzI2LDE5NDI3NS4wDQoxNzI3LDE3MjM0MC4wDQoxNzI4LDE4MzM5MC4wDQoxNzI5LDE1NDQwMC4wDQoxNzMwLDE4ODQwMC4wDQoxNzMxLDEzMjA0MC4wDQoxNzMyLDEyMjQzNS4wDQoxNzMzLDExNTMyMC4wDQoxNzM0LDEyNjM5NS4wDQoxNzM1LDEyNDg5MC4wDQoxNzM2LDExMzk0MC4wDQoxNzM3LDMwMzE5MC4wDQoxNzM4LDIxODQwNy44DQoxNzM5LDI5NDk5NC45DQoxNzQwLDE5Njc1OC4wDQoxNzQxLDE3OTE1My4yDQoxNzQyLDE4MTEyMC4wDQoxNzQzLDE3NzAwMC4wDQoxNzQ0LDI5NTAyMS45DQoxNzQ1LDIzMjMzMi44DQoxNzQ2LDIzNDEyMC4wDQoxNzQ3LDE4NzQ3MC4wDQoxNzQ4LDIwMTg5MC4wDQoxNzQ5LDE0NzIxMC4wDQoxNzUwLDE0NTgwMi41DQoxNzUxLDIxODQ1MC4wDQoxNzUyLDExNzIwMC4wDQoxNzUzLDE1MjAwMC41DQoxNzU0LDIwNjEwMC4wDQoxNzU1LDE1OTk4NS4wDQoxNzU2LDExNTY1MC4wDQoxNzU3LDExOTczMC4wDQoxNzU4LDE0MjEyMC4wDQoxNzU5LDE1MDQ3MC4wDQoxNzYwLDEzNjU2MC4wDQoxNzYxLDE1ODg1MC4wDQoxNzYyLDE2MjgwMC4wDQoxNzYzLDE2MTkxMC4wDQoxNzY0LDEyMjMwMC4wDQoxNzY1LDE2NjMwMC4wDQoxNzY2LDE1NDczMC4wDQoxNzY3LDE5NzQ1MC4wDQoxNzY4LDEzNTgwMC4wDQoxNzY5LDE1NDM1MC4wDQoxNzcwLDEyOTM0NS4wDQoxNzcxLDEyODgzNS4wDQoxNzcyLDEyMDYyNS4wDQoxNzczLDEzOTU0NS4wDQoxNzc0LDE0OTY5MC4wDQoxNzc1LDEzMzcyMC4wDQoxNzc2LDExMzQ2MC40DQoxNzc3LDEwMzkwMC4wDQoxNzc4LDEzMTkyMi41DQoxNzc5LDExODY2MC40DQoxNzgwLDE3MzY1Ni41DQoxNzgxLDEyNDYwNS4wDQoxNzgyLDEwMTg4MC4wDQoxNzgzLDEzMjMwMC4wDQoxNzg0LDEwNTA3NS4wDQoxNzg1LDEzNTUyMi41DQoxNzg2LDE5NDk1MC4wDQoxNzg3LDE1OTk0MC4wDQoxNzg4LDU1MTgwLjANCjE3ODksOTk1NDAuMA0KMTc5MCw3NTUxNS4wDQoxNzkxLDE4Nzc0MC4wDQoxNzkyLDE0NjM5MC4wDQoxNzkzLDE1MDk1MC4wDQoxNzk0LDE1NDE4MC4wDQoxNzk1LDEzODE0MC4wDQoxNzk2LDExOTkwMC4wDQoxNzk3LDEyNjk4MC4wDQoxNzk4LDEyOTk1MC4wDQoxNzk5LDExMDMwMC4wDQoxODAwLDEyMjAwMC4wDQoxODAxLDEzMjc5My40DQoxODAyLDE3NjE5MC4wDQoxODAzLDE0ODE0MC4wDQoxODA0LDEzNDA4MC4wDQoxODA1LDEzMjUwMC4wDQoxODA2LDEyMzgxMi41DQoxODA3LDE1MzU1MC4wDQoxODA4LDEyNDY5MC4wDQoxODA5LDExMzA1MC4wDQoxODEwLDE2MDA0MC4wDQoxODExLDk0NTQwLjANCjE4MTIsMTAyNzgwLjANCjE4MTMsMTI2MjMwLjQNCjE4MTQsOTkxOTAuMA0KMTgxNSw2NTAyMC4wDQoxODE2LDk5MzUwLjANCjE4MTcsMTExNTQwLjANCjE4MTgsMTQ5MzUwLjANCjE4MTksMTE0NTAwLjANCjE4MjAsNjcwMjAuMA0KMTgyMSwxMjc4MTAuMA0KMTgyMiwxNTczOTAuMA0KMTgyMyw1MzMxMC4wDQoxODI0LDEzODQ1MC4wDQoxODI1LDE1MzA5MC4wDQoxODI2LDk2NDcwLjANCjE4MjcsMTE0MTUwLjANCjE4MjgsMTQ0NTIwLjANCjE4MjksMTIzNDY1LjANCjE4MzAsMTU5MDkwLjANCjE4MzEsMTgyMDkyLjUNCjE4MzIsMTI4MDkyLjUNCjE4MzMsMTQ5MzAwLjANCjE4MzQsMTIwOTUwLjQNCjE4MzUsMjAwMDY3LjUNCjE4MzYsMTM0NDUwLjANCjE4MzcsODg3MzAuMA0KMTgzOCwxMzEyNzAuOA0KMTgzOSw5MjY0MC4wDQoxODQwLDE1MjU1Ni40DQoxODQxLDEzOTgyNi40DQoxODQyLDEwMDcwMC4wDQoxODQzLDE0MzM5MC4wDQoxODQ0LDE0NTA4MC4wDQoxODQ1LDE0ODQ5MC4wDQoxODQ2LDE0NDYzMC4wDQoxODQ3LDE1NzYxMC4wDQoxODQ4LDU3OTIwLjANCjE4NDksMTA3NTY1LjANCjE4NTAsMTMzNDEyLjUNCjE4NTEsMTUxOTk1LjANCjE4NTIsMTI4OTEwLjANCjE4NTMsMTI3OTYyLjUNCjE4NTQsMTYxNTI0LjANCjE4NTUsMTQ3MDYyLjQ3NQ0KMTg1NiwyMDYxMjAuMA0KMTg1NywxNjYxMjAuMA0KMTg1OCwxNDMzODEuMg0KMTg1OSwxMzQ4NjUuNQ0KMTg2MCwxNDg5MDYuMA0KMTg2MSwxMzQ4NjUuNQ0KMTg2MiwyOTIwNjkuOQ0KMTg2MywyOTIwNjkuOQ0KMTg2NCwyOTIwNjkuOQ0KMTg2NSwzMzQzMDAuNg0KMTg2NiwzNTM2OTMuMg0KMTg2NywyNTM4NDAuNw0KMTg2OCwyODgzMTAuMA0KMTg2OSwxODgwNDQuOA0KMTg3MCwyNDkxNzQuMA0KMTg3MSwyNTE3MjcuMw0KMTg3MiwxNjk0MjguNg0KMTg3MywyMTgwMzAuMA0KMTg3NCwxMzUzMDAuMA0KMTg3NSwxODk1NTAuMA0KMTg3NiwxOTc3OTAuMA0KMTg3NywxODQ2MjUuMA0KMTg3OCwyMTQ5OTcuOQ0KMTg3OSwxMjc3MDAuMA0KMTg4MCwxMjk0NDYuMA0KMTg4MSwyMjk5ODEuMQ0KMTg4MiwyNzI3NzMuMA0KMTg4MywxOTM1MDAuMA0KMTg4NCwyMzE1MDAuMA0KMTg4NSwyMzIxNjAuMA0KMTg4NiwyNDEzNTAuMA0KMTg4NywxODg5OTkuMA0KMTg4OCwyNDk3NzQuMA0KMTg4OSwxNjA4MDcuMTYNCjE4OTAsMTMyOTAwLjANCjE4OTEsMTQzNDkwLjANCjE4OTIsMTA1NTY1LjANCjE4OTMsMTIxOTQ1LjANCjE4OTQsMTE0NzUwLjANCjE4OTUsMTU0NTYwLjANCjE4OTYsMTEyOTUwLjANCjE4OTcsMTEzNDM3LjUNCjE4OTgsMTAxNDEwLjANCjE4OTksMTQ0MzQwLjANCjE5MDAsMTMwMDE1LjQNCjE5MDEsMTQ3NTYwLjANCjE5MDIsMTE1MDc1LjANCjE5MDMsMjE2MzgwLjANCjE5MDQsMTM3MzAwLjANCjE5MDUsMTcxNTkwLjANCjE5MDYsMTU1NjEzLjQNCjE5MDcsMjAzNDk1LjANCjE5MDgsMTI4NjAwLjANCjE5MDksMTI0NDgwLjANCjE5MTAsMTI0NDgwLjANCjE5MTEsMTgzNTAwLjANCjE5MTIsMjgxMzc1LjkNCjE5MTMsMTUxNDUwLjANCjE5MTQsNzIzNjAuMA0KMTkxNSwyOTY1MzAuMg0KMTkxNiw4MjM4MC4wDQoxOTE3LDI2OTI0Ni4zDQoxOTE4LDEzNDY3MS4wDQoxOTE5LDE1MTQzNS4wDQoxOTIwLDE1ODc5MC41DQoxOTIxLDQwNjIzNC4yDQoxOTIyLDMwODgzOC4zDQoxOTIzLDE5MDcwMC4wDQoxOTI0LDIwNjY1MC4wDQoxOTI1LDI0MDkzNS4wDQoxOTI2LDM2MjM1OC41DQoxOTI3LDEyNTMzMC4wDQoxOTI4LDE1MTQwMC4wDQoxOTI5LDEyOTU0MC4wDQoxOTMwLDEzODk3MC4wDQoxOTMxLDEzOTc1MC4wDQoxOTMyLDEzNTQ5MC4wDQoxOTMzLDE1ODM1MC4wDQoxOTM0LDE5MjUwMC4wDQoxOTM1LDE3ODk3My4yDQoxOTM2LDIwNTE0MC4wDQoxOTM3LDE4MTQ5MC4wDQoxOTM4LDE2NDUzNi45DQoxOTM5LDI1MDM0MC4wDQoxOTQwLDIyMzk1MC4wDQoxOTQxLDE5MDg1MC4wDQoxOTQyLDE3NTIxMC4wDQoxOTQzLDIwMzM1MC4wDQoxOTQ0LDMwMjkyNi45DQoxOTQ1LDMzNDYyMC40DQoxOTQ2LDE2NjY0MC4wDQoxOTQ3LDI4ODY4MC4wDQoxOTQ4LDE2MzI4MC4wDQoxOTQ5LDIyMTkyNS4wDQoxOTUwLDE3MTkyMC4wDQoxOTUxLDI5OTg5MC4wDQoxOTUyLDIzMTY5MC4wDQoxOTUzLDE2NjM5MC4wDQoxOTU0LDE5OTg1MC4wDQoxOTU1LDEyMzIwMC4wDQoxOTU2LDI1NTcwMC4wDQoxOTU3LDE2NDYwMC4wDQoxOTU4LDMwNDMxMC4wDQoxOTU5LDE1MDQ3MS4xDQoxOTYwLDExMjg2MC4wDQoxOTYxLDEyMDMxNS4wDQoxOTYyLDg3NzAwLjANCjE5NjMsMTA5NTAwLjANCjE5NjQsMTEwOTAwLjANCjE5NjUsMTQ5ODE1LjANCjE5NjYsMTU0MzUwLjANCjE5NjcsMjMzODQ5LjkNCjE5NjgsNDAzNjQ5LjUNCjE5NjksMzU4OTc1LjANCjE5NzAsMzg5NTU0LjgNCjE5NzEsNDAzNTc0LjANCjE5NzIsMzUwMjM5LjUNCjE5NzMsMzA0NjQ2LjMNCjE5NzQsMjgxODYzLjcNCjE5NzUsMzk5MDE3LjYNCjE5NzYsMjY3MjUwLjANCjE5NzcsMzYyNzg5LjQNCjE5NzgsMzUyMDQ0LjANCjE5NzksMzc1Nzk4LjENCjE5ODAsMTg5MjcxLjUNCjE5ODEsMzYyMjEzLjANCjE5ODIsMjQ3MTI0LjYNCjE5ODMsMjQ3MTI0LjYNCjE5ODQsMTYwODQwLjANCjE5ODUsMjAxMjM5LjANCjE5ODYsMjExNTk2LjENCjE5ODcsMTk1NDczLjUNCjE5ODgsMTgxODAzLjANCjE5ODksMTk4MDAwLjANCjE5OTAsMjEzODUwLjANCjE5OTEsMjI0ODk3LjENCjE5OTIsMjA4NDYwLjANCjE5OTMsMTcwOTIzLjANCjE5OTQsMjY0ODc3LjUNCjE5OTUsMTkwNzUwLjANCjE5OTYsMjcxMDAwLjANCjE5OTcsMzE2MjM2LjYNCjE5OTgsMzQwNDUwLjANCjE5OTksMjQ2NDEwLjANCjIwMDAsMzAzNDQ2LjkNCjIwMDEsMjM5ODUwLjANCjIwMDIsMjI5MTQwLjANCjIwMDMsMjg2MzA3LjENCjIwMDQsMjU1NjM3LjgNCjIwMDUsMjQwNzkxLjINCjIwMDYsMjY4MjQ1LjQNCjIwMDcsMjkwODIzLjINCjIwMDgsMjEyMDgwLjYNCjIwMDksMTkyNTAwLjANCjIwMTAsMTg4MjUwLjANCjIwMTEsMTMwNDAwLjANCjIwMTIsMTc1NzY3LjINCjIwMTMsMTg3OTQwLjANCjIwMTQsMTkxNzcwLjANCjIwMTUsMTg1ODcwLjANCjIwMTYsMTkxNTEwLjANCjIwMTcsMjA1ODE3LjUNCjIwMTgsMTI2MzY1LjANCjIwMTksMTM2NDQwLjANCjIwMjAsMTExOTUwLjANCjIwMjEsMTEzNDUwLjANCjIwMjIsMTc1NTEwLjANCjIwMjMsMTYzNTMwLjANCjIwMjQsMjI1NTUwLjANCjIwMjUsNDQxODc3LjANCjIwMjYsMTg1MzE0LjUNCjIwMjcsMTUzNjYzLjE2DQoyMDI4LDE3MzY5MC4wDQoyMDI5LDE4NDg5MC4wDQoyMDMwLDI4ODYzMC4wDQoyMDMxLDI2OTI4Mi4yDQoyMDMyLDI4MTM5MC4wDQoyMDMzLDMzNzk0MC4wDQoyMDM0LDE2NDgwMC4wDQoyMDM1LDIxMzcxMC4wDQoyMDM2LDIzMjkwMC4wDQoyMDM3LDIzMjkwMC4wDQoyMDM4LDM3NzkwMC4wDQoyMDM5LDE5MzIwMC4wDQoyMDQwLDM4MzI0Mi4yDQoyMDQxLDIyMzYxMS43DQoyMDQyLDIxMzY3MC4wDQoyMDQzLDE2MTk4MC41DQoyMDQ0LDE3ODA2MC4wDQoyMDQ1LDE2OTk5MC4wDQoyMDQ2LDE0MTI4MC41DQoyMDQ3LDEzODY1MC4wDQoyMDQ4LDEzOTY0Ni4wDQoyMDQ5LDEzOTUyMS4wDQoyMDUwLDE2OTc4NS4wDQoyMDUxLDEwODc1MC40DQoyMDUyLDEzNjA3MC4zDQoyMDUzLDEzNjgwMC4wDQoyMDU0LDgxNjEwLjANCjIwNTUsMTQ0MDUwLjUNCjIwNTYsMTM0Nzk1LjANCjIwNTcsMTIyNTAwLjANCjIwNTgsMjExMTQwLjANCjIwNTksMTQzMTk1LjANCjIwNjAsMTQ1NTQwLjANCjIwNjEsMTM1MjUwLjANCjIwNjIsMTMxMDk1LjANCjIwNjMsMTA1ODUwLjANCjIwNjQsMTQxMDk1LjANCjIwNjUsMTI2NzkwLjANCjIwNjYsMTkwMTkwLjANCjIwNjcsMTQ4OTQwLjANCjIwNjgsMTM4MTcwLjUNCjIwNjksODQ1MzAuMA0KMjA3MCwxMDg4NTAuMA0KMjA3MSwxMDE0MDAuMA0KMjA3MiwxNDM2NDAuMA0KMjA3MywxMzQzODYuMA0KMjA3NCwxNjA0MDAuMA0KMjA3NSwxNDM0ODAuMA0KMjA3NiwxMTcyNzAuMA0KMjA3NywxMzQwNjAuMA0KMjA3OCwxMjg2ODAuMA0KMjA3OSwxMjYyNDAuMA0KMjA4MCwxMjM0NDAuMA0KMjA4MSwxMjM0MTIuNQ0KMjA4MiwxMzI0MDAuMA0KMjA4MywxMzU4MzAuNQ0KMjA4NCwxMjc3MTAuMA0KMjA4NSwxNDMyMDUuMA0KMjA4NiwxMzUwNDYuMjgNCjIwODcsMTI4NTQwLjANCjIwODgsMTE2MzUwLjQNCjIwODksMTA3OTAwLjANCjIwOTAsMTM3NDIwLjQNCjIwOTEsMTA5NzIwLjANCjIwOTIsMTE1NTAwLjANCjIwOTMsMTQxODg3LjQNCjIwOTQsMTQ0MTQwLjANCjIwOTUsMTQ2NzUwLjANCjIwOTYsODg2NTAuMA0KMjA5NywxMDYyOTAuNA0KMjA5OCwxNDU4NDAuMA0KMjA5OSw2OTIwMC4wDQoyMTAwLDExMTk4NS4xDQoyMTAxLDEzODAyNi44DQoyMTAyLDE0MjcyNS4wDQoyMTAzLDEwNzYzNS4wDQoyMTA0LDEyMzM5MC4wDQoyMTA1LDEyNDEzMy40DQoyMTA2LDExMDMwMC4wDQoyMTA3LDI4MzQyMy44DQoyMTA4LDEyNDE1MC4wDQoyMTA5LDEyNDkwMC4wDQoyMTEwLDEyMjUwMC4wDQoyMTExLDE2OTc1MC4wDQoyMTEyLDE1NzQ1MC4wDQoyMTEzLDEyMTE1MC4wDQoyMTE0LDExNDQwMC40DQoyMTE1LDE1NzA1NS4wDQoyMTE2LDEzOTMyMC4wDQoyMTE3LDE3MTAzNS4wDQoyMTE4LDEyNTg3MC4wDQoyMTE5LDEwNjk4MC4wDQoyMTIwLDEwMTc1MC40DQoyMTIxLDEwNjk2MC4wDQoyMTIyLDEwOTg1NS4wDQoyMTIzLDEwOTk1MC4wDQoyMTI0LDIwMjk1OS4wDQoyMTI1LDEzODQyNS4wDQoyMTI2LDE3MTM1MC4wDQoyMTI3LDE2NTgwOS45DQoyMTI4LDEzMzU0MC4wDQoyMTI5LDk2NzQwLjANCjIxMzAsMTQ3NDkwLjANCjIxMzEsMTgxOTUwLjANCjIxMzIsMTI3ODUwLjANCjIxMzMsMTM1ODAwLjANCjIxMzQsMTI2MTEwLjANCjIxMzUsOTUxNzUuMA0KMjEzNiw5MDAxNS4wDQoyMTM3LDEzNjIzMC4wDQoyMTM4LDEzOTkwMC4wDQoyMTM5LDE1MTg2MC4wDQoyMTQwLDEzNDAwMC4wDQoyMTQxLDE0Nzc4MC4wDQoyMTQyLDEzNjQ5MC4wDQoyMTQzLDE1MTU0NS4zDQoyMTQ0LDk4OTYwLjANCjIxNDUsMTMyMjc1LjANCjIxNDYsMTMyNDgwLjANCjIxNDcsMTU3NjUwLjANCjIxNDgsMTE1ODkwLjANCjIxNDksMTI0NDgwLjANCjIxNTAsMjM2MDYwLjANCjIxNTEsMTI3OTkwLjANCjIxNTIsMjA2NTYwLjANCjIxNTMsMTc5Nzg1LjANCjIxNTQsMTA4MTAwLjANCjIxNTUsMTI1ODkwLjANCjIxNTYsMjI1OTUwLjANCjIxNTcsMjI5Njg1LjANCjIxNTgsMjI0NjUyLjUNCjIxNTksMjAzNzk1LjMNCjIxNjAsMTYwNzQ2LjQNCjIxNjEsMjgxNDg4LjENCjIxNjIsMzk5NTI5LjQNCjIxNjMsMzY0MjcxLjINCjIxNjQsMjQwOTIwLjANCjIxNjUsMTY3ODAwLjANCjIxNjYsMTQyMTAwLjANCjIxNjcsMTkxNzE0LjANCjIxNjgsMjA5NDQ1LjANCjIxNjksMTg1ODkwLjANCjIxNzAsMjI5NjcwLjANCjIxNzEsMTQ4NzkwLjANCjIxNzIsMTUzOTgwLjANCjIxNzMsMTU1MDA1LjMNCjIxNzQsMjYzMjc4LjYNCjIxNzUsMzE1NzMxLjENCjIxNzYsMjc4MzUwLjANCjIxNzcsMjc2NjMwLjANCjIxNzgsMjMyMDA5LjMNCjIxNzksMTM5NzU4LjMzMzMzMzMzMzM0DQoyMTgwLDIxMzM3NS4wDQoyMTgxLDE4OTU2MC4wDQoyMTgyLDIyMzkyMi4yDQoyMTgzLDIwMTI3My44DQoyMTg0LDEzNDExMC4wDQoyMTg1LDEyMDg2MC4wDQoyMTg2LDE1MzE3MC4wDQoyMTg3LDE0OTEyMC4wDQoyMTg4LDE2NTE3My4yDQoyMTg5LDE3MjY1MC4wDQoyMTkwLDg3MDUwLjANCjIxOTEsODU2MDAuMA0KMjE5Miw4MzAyMC4wDQoyMTkzLDExOTgwMC4wDQoyMTk0LDEwNDg3NS4wDQoyMTk1LDExNTM3MC4wDQoyMTk2LDk2MTUwLjANCjIxOTcsMTIyMjcyLjUNCjIxOTgsMTUzNTAwLjANCjIxOTksMTY3MTgwLjANCjIyMDAsMTI5ODAwLjANCjIyMDEsMTQyNTQwLjANCjIyMDIsMjE2NDAwLjANCjIyMDMsMTY2NzMwLjANCjIyMDQsMTc5NzQwLjANCjIyMDUsMTEwMzg3LjUNCjIyMDYsMTI4MjMwLjANCjIyMDcsMjAwMzkwLjANCjIyMDgsMjMyNTMwLjANCjIyMDksMTg1ODIwLjANCjIyMTAsMTI4NjAwLjANCjIyMTEsMTE4NTUwLjANCjIyMTIsMTMxODcwLjANCjIyMTMsMTEyMjgwLjANCjIyMTQsMTY5OTQwLjANCjIyMTUsMTA0NDAwLjANCjIyMTYsMTMyNDkwLjANCjIyMTcsODUxOTAuMA0KMjIxOCw5NTEyMC4wDQoyMjE5LDg3NDMwLjANCjIyMjAsNjgyNzAuMA0KMjIyMSwyNjc4NDAuMg0KMjIyMiwyMjEwNjcuNA0KMjIyMywyNjIxNTAuMA0KMjIyNCwyMjYyNjUuMA0KMjIyNSwxMzI5NjYuNA0KMjIyNiwyMDU0NjAuMA0KMjIyNywxOTQ2NjUuMA0KMjIyOCwyNDUxNDMuMw0KMjIyOSwyMjgxODEuMg0KMjIzMCwxNTkyOTMuOA0KMjIzMSwyMTIyMzAuMA0KMjIzMiwxODc5MjAuNQ0KMjIzMywxNzE5MDAuMA0KMjIzNCwyNDQzMzUuNg0KMjIzNSwyMDg5MDAuMA0KMjIzNiwyNTE2NTAuMA0KMjIzNywzMjkxNTAuMA0KMjIzOCwxOTA2MjAuMA0KMjIzOSwxNDUwMTIuNQ0KMjI0MCwxNjkzODAuMA0KMjI0MSwxNDY1NDAuMA0KMjI0MiwxNDA5NzAuMA0KMjI0MywxMjQ4ODAuMA0KMjI0NCwxMDI0NTAuMA0KMjI0NSw5MjAwMC4wDQoyMjQ2LDEzMTc0MC4wDQoyMjQ3LDExNDA1MC4wDQoyMjQ4LDExNjAwMC4wDQoyMjQ5LDEyMjUwMC4wDQoyMjUwLDEzNzIwMC4wDQoyMjUxLDEyMTIzOC43DQoyMjUyLDE4ODI3MC4wDQoyMjUzLDE1NTI4OS4wDQoyMjU0LDE3ODY5MC4wDQoyMjU1LDE5NDc1MC4wDQoyMjU2LDE3NzU0MC4wDQoyMjU3LDIwMzgwMC4wDQoyMjU4LDE3MjIyNC4wDQoyMjU5LDE4MjE5MC4wDQoyMjYwLDE1MzA0MC4wDQoyMjYxLDE4NTMwMC4wDQoyMjYyLDIyMTMwMC4wDQoyMjYzLDMxNzA2NC41DQoyMjY0LDQyMDYyMy4xDQoyMjY1LDE1OTE5MC41DQoyMjY2LDI4NDEzMC4wDQoyMjY3LDMzMjA2Mi40DQoyMjY4LDM2MTI3Ni43DQoyMjY5LDE2NzQ4MC4wDQoyMjcwLDE2ODcxMC41DQoyMjcxLDE5MTA0MC4wDQoyMjcyLDE4Nzg4MC4wDQoyMjczLDE2ODQ3MC4wDQoyMjc0LDE2ODg2MC4wDQoyMjc1LDE2Njc4MC4wDQoyMjc2LDE1NDM5MC4wDQoyMjc3LDE4NzcyNS4wDQoyMjc4LDE2MTMxNS41DQoyMjc5LDEzMDMwMC4wDQoyMjgwLDEwNjM2MC4wDQoyMjgxLDE3ODY5NC4wDQoyMjgyLDE4NDQ3MC4wDQoyMjgzLDk0NTAwLjANCjIyODQsMTE2NDAwLjANCjIyODUsMTUzOTQ1LjANCjIyODYsMTI2NDcwLjANCjIyODcsMzQ2NTIwLjYNCjIyODgsMjk4MjcxLjkNCjIyODksMzg4MzY3LjcNCjIyOTAsMzg4NDgyLjANCjIyOTEsMzIzMzc5LjcNCjIyOTIsMzcxNDYyLjQNCjIyOTMsNDE5MjczLjENCjIyOTQsMzg5OTI5LjgNCjIyOTUsNDE4MDMzLjcNCjIyOTYsMzAwMDUxLjUNCjIyOTcsMzAzMjQ4LjYNCjIyOTgsMzIwODQwLjANCjIyOTksMzk5MzQ4LjANCjIzMDAsMzAzNjIwLjANCjIzMDEsMjU5NTc2LjENCjIzMDIsMjI1MTMwLjANCjIzMDMsMjUzMTQwLjANCjIzMDQsMjU3NDIyLjENCjIzMDUsMTg2NzIxLjQNCjIzMDYsMTg2NzIxLjQNCjIzMDcsMTkxMTk4LjANCjIzMDgsMjI0NzUxLjcNCjIzMDksMjg3NDgwLjANCjIzMTAsMjQ3MTI0LjYNCjIzMTEsMTgyMjIwLjANCjIzMTIsMTY4ODc4LjUNCjIzMTMsMTcwNzE4LjANCjIzMTQsMTY5ODg3LjINCjIzMTUsMTY5NzI4LjANCjIzMTYsMTgxMzQ5LjANCjIzMTcsMTc1ODg3LjANCjIzMTgsMTY5OTIyLjUNCjIzMTksMTg4MjUxLjANCjIzMjAsMTg3OTA0LjINCjIzMjEsMjQxMjkyLjINCjIzMjIsMTY1OTAxLjcNCjIzMjMsMTY3MjkwLjUNCjIzMjQsMTYzOTczLjINCjIzMjUsMjE5MjIxLjUNCjIzMjYsMTY1MzAwLjANCjIzMjcsMjAxNTAwLjANCjIzMjgsMjE4NjE5LjANCjIzMjksMTg0MTAwLjANCjIzMzAsMTc5MzUwLjANCjIzMzEsMzQ0NTUwLjANCjIzMzIsNDE2MDg0LjINCjIzMzMsMjk4MjA2LjYNCjIzMzQsMjcxMDgwLjANCjIzMzUsMjU4MzIwLjANCjIzMzYsMzIwNTMwLjANCjIzMzcsMjA2MzQxLjgNCjIzMzgsMjQzNTE4LjkNCjIzMzksMjUzMjQxLjcNCjIzNDAsMzc3NzIyLjUNCjIzNDEsMjE1OTQ4LjANCjIzNDIsMjQ4ODgwLjANCjIzNDMsMjI0NTQ2LjkNCjIzNDQsMjM5MDY3LjUNCjIzNDUsMjU5NDMyLjENCjIzNDYsMjY5MzE2LjgNCjIzNDcsMTkwMzkyLjINCjIzNDgsMjM0MjE0LjQNCjIzNDksMTY0NDkxLjkNCjIzNTAsMjU2NTQwLjcNCjIzNTEsMjYyODAyLjkNCjIzNTIsMjgyNDE5LjMNCjIzNTMsMjIyMDAwLjANCjIzNTQsMTI2MDAwLjANCjIzNTUsMTI5NjkwLjANCjIzNTYsMTU3ODgwLjANCjIzNTcsMTk3MjQyLjgNCjIzNTgsMjA4MTUwLjANCjIzNTksMTI2MTc1LjANCjIzNjAsMTE4NzAwLjANCjIzNjEsMTM4MjcwLjANCjIzNjIsMjgwNjI4LjANCjIzNjMsMTM1NjUwLjANCjIzNjQsMTYzNTkwLjANCjIzNjUsMjIyMjgxLjINCjIzNjYsMTkxODAwLjANCjIzNjcsMjYyOTQyLjINCjIzNjgsMTg4NzI4LjINCjIzNjksMjMzOTUwLjANCjIzNzAsMTc4MzQwLjANCjIzNzEsMTgxNzYwLjANCjIzNzIsMTgzMjUxLjkNCjIzNzMsMjcxMDQ4LjUNCjIzNzQsMzA1OTcwLjANCjIzNzUsMjUwOTEwLjANCjIzNzYsMjUwMzk3LjkNCjIzNzcsMzA5MDE2LjENCjIzNzgsMTU1NjI1LjANCjIzNzksMjAxOTk0LjANCjIzODAsMTQzNjIwLjANCjIzODEsMTU0MjQwLjANCjIzODIsMTgxMTYwLjANCjIzODMsMjE1NzY1LjANCjIzODQsMjMwMzg4LjANCjIzODUsMTQ5ODE1LjANCjIzODYsMTM3NzgwLjANCjIzODcsMTM2MDEwLjANCjIzODgsMTE5MTc1LjANCjIzODksMTI5MDkwLjANCjIzOTAsMTMzMTAwLjANCjIzOTEsMTMzNjIwLjANCjIzOTIsMTE1MjgwLjANCjIzOTMsMTU5MjQwLjANCjIzOTQsMTUxMTAwLjANCjIzOTUsMTg1ODg1LjANCjIzOTYsMTQ2MTAwLjANCjIzOTcsMTgzMTAwLjANCjIzOTgsMTI0Mzg2LjANCjIzOTksNjQ4MTAuMA0KMjQwMCw1MzAzMC4wDQoyNDAxLDEyNzQzMC4wDQoyNDAyLDEzNTkzMC4wDQoyNDAzLDEzNzA5MC41DQoyNDA0LDEzMjAyNS4wDQoyNDA1LDE0OTIwMC4wDQoyNDA2LDEzNDU0Ni4wDQoyNDA3LDExMzk5MC4wDQoyNDA4LDEzNzM4NS4wDQoyNDA5LDE0NTg5MC4wDQoyNDEwLDE3OTMyMC4wDQoyNDExLDEyMTk4Ni4wDQoyNDEyLDE1MTg1MC4wDQoyNDEzLDEyODk5NS4wDQoyNDE0LDEzOTQxNS4wDQoyNDE1LDEyODQ4MC4wDQoyNDE2LDEzNTY2NS4wDQoyNDE3LDEyNzkyMC4wDQoyNDE4LDEyMDU1MC4wDQoyNDE5LDExODA3NS4wDQoyNDIwLDEyOTY4Ni4wDQoyNDIxLDE0NzY5MC4wDQoyNDIyLDExNzI3Ni4wDQoyNDIzLDExNzk2OC40DQoyNDI0LDE5NDE3NS4wDQoyNDI1LDE0OTgwMy43DQoyNDI2LDExMzc5MC4wDQoyNDI3LDEyODU1OC40DQoyNDI4LDE3MDYxMC4wDQoyNDI5LDEwNjM1MC4wDQoyNDMwLDEyMjMwMC4wDQoyNDMxLDEyMzY0MC4wDQoyNDMyLDEzNzE2NS4wDQoyNDMzLDE0MTIzNS4wDQoyNDM0LDEyOTEyMC4wDQoyNDM1LDE1MjgyMC4wDQoyNDM2LDEwNTcxMC4wDQoyNDM3LDExMDU0MC4wDQoyNDM4LDExODU0MC4wDQoyNDM5LDExODgzNS4wDQoyNDQwLDEzMTM3NS4wDQoyNDQxLDEwNjUwNS4wDQoyNDQyLDExNDMwMC4wDQoyNDQzLDEyNjE3MC4wDQoyNDQ0LDEyODMwMC4wDQoyNDQ1LDExMjQ1MC4wDQoyNDQ2LDkwNTQwLjANCjI0NDcsMjAyOTMwLjANCjI0NDgsMTYxMDAwLjANCjI0NDksMTAyMzAwLjANCjI0NTAsMTY1MDgwLjANCjI0NTEsMTI1MDAwLjANCjI0NTIsMjAxMDk3LjkNCjI0NTMsOTAzNDAuMA0KMjQ1NCwxMDQzODUuMA0KMjQ1NSwxMTk3ODAuNA0KMjQ1NiwxMDE1NTAuMA0KMjQ1NywxMTg4NTAuNA0KMjQ1OCwxMDQ2NjAuMA0KMjQ1OSwxMDQwMDAuMA0KMjQ2MCwxNDM0OTAuMA0KMjQ2MSwxMTY1NjAuNA0KMjQ2MiwxMjg1MDAuMA0KMjQ2MywxMDYxMzAuMA0KMjQ2NCwyMDI0ODAuMA0KMjQ2NSwxMjY4MTAuMA0KMjQ2NiwxMTQxNDAuMA0KMjQ2NywxNTQ5OTAuMA0KMjQ2OCwxMDM5NDAuMA0KMjQ2OSwxMDcyMTIuNQ0KMjQ3MCwxNjg5MzAuMA0KMjQ3MSwxOTg5NTcuNQ0KMjQ3MiwxODU4NTAuMA0KMjQ3MywxMTM0NzUuMA0KMjQ3NCwxMTI1NjAuMA0KMjQ3NSwxODg1ODAuMA0KMjQ3NiwxMjA0MDAuNA0KMjQ3NywxMjk5MjYuMA0KMjQ3OCwxNjkyNTAuMA0KMjQ3OSwxMTk4NTAuMA0KMjQ4MCwxNDYwNzUuMA0KMjQ4MSwxMjMzMDAuMA0KMjQ4MiwxMzA3MTUuMA0KMjQ4MywxMTg2NTAuMA0KMjQ4NCwxMjg0OTIuMA0KMjQ4NSwxMTgzMjAuMA0KMjQ4NiwxNTYwODAuMA0KMjQ4NywxNzYzMDAuMA0KMjQ4OCwxNDQ4MjUuNA0KMjQ4OSwxNTIxODAuMA0KMjQ5MCwxMzUzOTAuMA0KMjQ5MSw5NzgxMC4wDQoyNDkyLDE4NDU5MC4wDQoyNDkzLDEzMjg4MC4wDQoyNDk0LDE2ODY0MC4wDQoyNDk1LDk4MTgwLjANCjI0OTYsMjM2Mzc4LjANCjI0OTcsMTIzMTEwLjANCjI0OTgsMTIyNDgwLjANCjI0OTksMTAzODUwLjANCjI1MDAsMTI3OTYyLjUNCjI1MDEsMTE2NjM1LjANCjI1MDIsMTU4NjUyLjUNCjI1MDMsMTE0ODkwLjANCjI1MDQsMTk2MTkwLjANCjI1MDUsMjA2ODI5LjkNCjI1MDYsMjc0NTE5LjUNCjI1MDcsMzg1MjQ3LjcNCjI1MDgsMjc0NTE5LjUNCjI1MDksMjE4NjkwLjANCjI1MTAsMjM5NDUyLjINCjI1MTEsMTg1MjczLjMNCjI1MTIsMjE3OTM3LjgNCjI1MTMsMjI1NzkwLjANCjI1MTQsMjYzMTAwLjANCjI1MTUsMTQ0NDAwLjANCjI1MTYsMTUzMjQ5LjcNCjI1MTcsMTMzMTUwLjANCjI1MTgsMTQwOTk1LjANCjI1MTksMjMyNjcwLjANCjI1MjAsMjEzNzIwLjANCjI1MjEsMTg4MDUwLjANCjI1MjIsMjEyOTEwLjANCjI1MjMsMTIyMjAwLjANCjI1MjQsMTQxODMwLjANCjI1MjUsMTQzMjAwLjANCjI1MjYsMTQyNjAwLjANCjI1MjcsMTI3MDAwLjANCjI1MjgsMTE5MDkwLjANCjI1MjksMTM0MDI1LjANCjI1MzAsMTEyOTQwLjANCjI1MzEsMjIzNTU3LjgNCjI1MzIsMjMxNTkwLjANCjI1MzMsMjAyNDM3LjUNCjI1MzQsMjYwNjAwLjANCjI1MzUsMjgwMDIwLjANCjI1MzYsMjI2NzUwLjANCjI1MzcsMjIwNjAwLjANCjI1MzgsMTkxMTUwLjANCjI1MzksMTc4MDkwLjANCjI1NDAsMTgxMTM2LjANCjI1NDEsMTgwNTc2LjANCjI1NDIsMTYxOTgyLjENCjI1NDMsMTI5MTg2LjANCjI1NDQsMTM5NzYwLjANCjI1NDUsMTE4NDkwLjANCjI1NDYsMTQzMzkwLjANCjI1NDcsMTQ2NjY1LjANCjI1NDgsMTQwNDg2LjUNCjI1NDksMTU5Mjc4LjUNCjI1NTAsMzMwOTYzLjYNCjI1NTEsMTQ0MjQwLjANCjI1NTIsMTM0NDc1LjANCjI1NTMsODU2MDAuMA0KMjU1NCwxMzQyMDAuMA0KMjU1NSwxMTM1NTAuNA0KMjU1Niw5ODk4MC4wDQoyNTU3LDEwOTIwMC4wDQoyNTU4LDEzNTg0MC4wDQoyNTU5LDEyNTQyNS4wDQoyNTYwLDExOTg5MC40DQoyNTYxLDEzMzY2NS40DQoyNTYyLDEwMjQ1MC4wDQoyNTYzLDE0MjAxNS40DQoyNTY0LDE3NjQ2MC4wDQoyNTY1LDEyMDE4NS4wDQoyNTY2LDE4MzE0NS4wDQoyNTY3LDEyMDQwMC4wDQoyNTY4LDE4NTAwMC4wDQoyNTY5LDE3Njg0MC4wDQoyNTcwLDEyODYwMC4wDQoyNTcxLDE2NDYxNS41DQoyNTcyLDE5NDc1MC4wDQoyNTczLDIxMzE4MC4wDQoyNTc0LDMwMzQwMC4wDQoyNTc1LDEzMTAyMC4wDQoyNTc2LDE0MDMzMS44DQoyNTc3LDE0Njc4OC40DQoyNTc4LDk4NjQwLjANCjI1NzksODEwMjAuMA0KMjU4MCwxNDAzMTcuMQ0KMjU4MSwxMzM2NzUuMA0KMjU4MiwxMTU0NTAuMA0KMjU4MywyNTQ1OTAuMA0KMjU4NCwxNjI3NzUuMA0KMjU4NSwxODUxOTAuMA0KMjU4NiwxODM3MjUuMA0KMjU4NywxODgxMzAuMA0KMjU4OCwxNjM5ODUuMA0KMjU4OSwxNDUwNDUuMA0KMjU5MCwyMTcwMzAuMA0KMjU5MSwxOTE1NDAuMA0KMjU5MiwyMjUwMTYuNQ0KMjU5MywyMzQ2OTUuNg0KMjU5NCwxNzMyMjAuMA0KMjU5NSwyMTcwNDAuMA0KMjU5NiwzMzkwMzUuMg0KMjU5NywyMDgxNTAuMA0KMjU5OCwyOTU5OTcuMA0KMjU5OSwzNTE5NjEuMQ0KMjYwMCwxMTU2NDAuMA0KMjYwMSwxNDU1NTAuMA0KMjYwMiw5NTc1MC4wDQoyNjAzLDkzMzUwLjANCjI2MDQsOTQ4MDAuMA0KMjYwNSw5OTY4MC4wDQoyNjA2LDE0MDk0Ni4wDQoyNjA3LDE1NzEwMC4wDQoyNjA4LDE2NDgxMC4wDQoyNjA5LDE0NjU2Ni4wDQoyNjEwLDExMTAwMC4wDQoyNjExLDExNzUwMC4wDQoyNjEyLDE0NzgyNS4wDQoyNjEzLDExNjAwMC4wDQoyNjE0LDExNzUwMC4wDQoyNjE1LDE0MTQ5MC4wDQoyNjE2LDEyNDQ0MC4wDQoyNjE3LDE4NTU0NS4wDQoyNjE4LDE3ODc5MC4wDQoyNjE5LDIxMzk3MC4wDQoyNjIwLDE3NjY3MC4wDQoyNjIxLDE3ODQwMC4wDQoyNjIyLDE5MzI1MC4wDQoyNjIzLDI1NTEwMC4wDQoyNjI0LDI3NjU2OC42DQoyNjI1LDMxMTc3Ny4wDQoyNjI2LDE2OTYxMC4wDQoyNjI3LDE4MDEwMC4wDQoyNjI4LDM4OTczMC4yDQoyNjI5LDQzODYwMS4zDQoyNjMwLDMyODEzOS42DQoyNjMxLDQyMDAxNS40DQoyNjMyLDM4ODQ5My4yDQoyNjMzLDMwNjAwMC4wDQoyNjM0LDM1MjM2My4wDQoyNjM1LDE1MjA4NS4wDQoyNjM2LDE4MjI0MC4wDQoyNjM3LDE1NzgxMC4wDQoyNjM4LDI1MTE0Mi44DQoyNjM5LDE3NzgwMC4wDQoyNjQwLDE1Njc2MC4wDQoyNjQxLDExMzE1MC4wDQoyNjQyLDIxMDAwNS4wDQoyNjQzLDEyMDkyNS4wDQoyNjQ0LDEyNTg4MC4wDQoyNjQ1LDk0NjUwLjANCjI2NDYsODk3MDAuMA0KMjY0Nyw5MzkwMC4wDQoyNjQ4LDE1NzA5MC4wDQoyNjQ5LDE0NDQ4MC4wDQoyNjUwLDE1NzMyNS4wDQoyNjUxLDE0OTU1MC4wDQoyNjUyLDM2NTgyOS43DQoyNjUzLDI1Njk2MC4yDQoyNjU0LDI0NDA0OC40DQoyNjU1LDMzNDgwMC4wDQoyNjU2LDMzMjA2Ni44DQoyNjU3LDMwODQwOS44DQoyNjU4LDI2NTg3NS40DQoyNjU5LDMyNDM1Ni41DQoyNjYwLDMzMjM0NC4zDQoyNjYxLDMxNjM0MC4wDQoyNjYyLDMyNjMwMC4wDQoyNjYzLDI2NTQ0Mi4yDQoyNjY0LDI3NjQ0MC4wDQoyNjY1LDI4MDYwMC4wDQoyNjY2LDI4NDUzMC4wDQoyNjY3LDE2NzM5My4wDQoyNjY4LDE4Njk3MS41DQoyNjY5LDE4Mjc0OC4xDQoyNjcwLDI5NTExMy45DQoyNjcxLDE4Njk3MS41DQoyNjcyLDE4NTQxNy40DQoyNjczLDIwMDA5OC4wDQoyNjc0LDIwOTQzMy43DQoyNjc1LDE2ODA4MS4wDQoyNjc2LDE3NjgwMi41DQoyNjc3LDE5NzM1MC4wDQoyNjc4LDI2NTkwOS44DQoyNjc5LDI4MzMwMC4wDQoyNjgwLDI2MjYwMC4wDQoyNjgxLDM5OTQ5Mi44DQoyNjgyLDMyOTc2Mi4wDQoyNjgzLDQ0OTMxNS40DQoyNjg0LDMwMDI3NS4wDQoyNjg1LDMzMDM4Ny4wDQoyNjg2LDI2MDYxOC4zDQoyNjg3LDI1NTg4NS42DQoyNjg4LDIzODcwMS43DQoyNjg5LDIzNDk5NS42DQoyNjkwLDM5OTIzNi4yDQoyNjkxLDE5NTM5NS4wDQoyNjkyLDExODY5OS4wDQoyNjkzLDE5ODY2Mi40DQoyNjk0LDEwOTI0OS4wDQoyNjk1LDE5MTMwMC4wDQoyNjk2LDE4NjMyOC41DQoyNjk3LDIxNDcyNS4wDQoyNjk4LDIwMjUwMC4wDQoyNjk5LDE4MjkxMC4wDQoyNzAwLDE3MzY0MC4wDQoyNzAxLDE1MDQ2Ni41DQoyNzAyLDEzMzUxMC4wDQoyNzAzLDE2Mjc2MC4wDQoyNzA0LDE0NzM5MC4wDQoyNzA1LDEyOTg2NS4wDQoyNzA2LDEyMDI1MC4wDQoyNzA3LDEyOTUxMi4wDQoyNzA4LDEyNjMyNS4wDQoyNzA5LDEwMzE0MC4wDQoyNzEwLDEyMDY1MC4wDQoyNzExLDI0ODYyOC4wDQoyNzEyLDM0NjUxNy44DQoyNzEzLDE3MzIwMC4wDQoyNzE0LDE0NzU2Ni45MzMzMzMzMzMzNQ0KMjcxNSwxODE5NzAuMA0KMjcxNiwxNDkyMjUuMA0KMjcxNywxODA4NTYuNQ0KMjcxOCwyNDEwNTEuNw0KMjcxOSwxNDY3MTAuMA0KMjcyMCwxNDU4MTUuMA0KMjcyMSwxMzYxNzAuMA0KMjcyMiwxNjM5OTcuMA0KMjcyMywxNTIxMjEuNjY2NjY2NjY2NjYNCjI3MjQsMTIwMTcwLjANCjI3MjUsMTI2NzAwLjANCjI3MjYsMTMzMTUwLjANCjI3MjcsMTY4NDc1LjANCjI3MjgsMTU2MzQwLjANCjI3MjksMTM1NDgwLjANCjI3MzAsMTMyOTM1LjANCjI3MzEsMTEyMDAwLjANCjI3MzIsMTEwMDAwLjANCjI3MzMsMTYzNzkwLjANCjI3MzQsMTc0ODIwLjANCjI3MzUsMTI3MDk1LjANCjI3MzYsMTQ5MTAwLjANCjI3MzcsMTE4NDAwLjANCjI3MzgsMTM4OTkwLjUNCjI3MzksMTU2NjkwLjANCjI3NDAsMTUzNTUwLjANCjI3NDEsMTUzNzM1LjANCjI3NDIsMTU5MTAwLjANCjI3NDMsMTQ4NTIwLjANCjI3NDQsMTQxMjI3LjUNCjI3NDUsMTM0NDAwLjANCjI3NDYsMTI2NjMwLjANCjI3NDcsMTUwMzUwLjANCjI3NDgsMTE2MDcwLjANCjI3NDksMTIyOTMwLjANCjI3NTAsMTI5ODYwLjANCjI3NTEsMTE4NzUwLjANCjI3NTIsMjM1MDMwLjANCjI3NTMsMTQyMTkwLjANCjI3NTQsMTk4ODQwLjANCjI3NTUsMTMwMTcwLjANCjI3NTYsOTI5NTAuMA0KMjc1Nyw4OTE1MC4wDQoyNzU4LDc4NDIwLjANCjI3NTksMTU4MTgwLjANCjI3NjAsMTQxNDQwLjANCjI3NjEsMTQwMjkwLjANCjI3NjIsMTM0NzQ3LjUNCjI3NjMsMjAxNDcwLjANCjI3NjQsMTYzNzYwLjANCjI3NjUsMjk0NDI4LjANCjI3NjYsMTIxNDAwLjANCjI3NjcsOTkzMzAuMA0KMjc2OCwxMjY4NTAuMA0KMjc2OSwxMzcxNzUuMA0KMjc3MCwxNTkxMjAuMA0KMjc3MSwxMjAwNDAuMA0KMjc3MiwxMDc1OTAuMA0KMjc3MywxMzY2MDAuMA0KMjc3NCwxMzI1NzguNw0KMjc3NSwxNDI0MTAuMA0KMjc3NiwxNDkwNTAuMA0KMjc3NywxNjU4MDAuMA0KMjc3OCwxMjA5OTUuMg0KMjc3OSwxMDIzMDAuMA0KMjc4MCwxMjg4NDAuMA0KMjc4MSwxMDAzOTAuMA0KMjc4Miw5MjUwMC4wDQoyNzgzLDEwMzg2MC4wDQoyNzg0LDEyODA0MC4wDQoyNzg1LDEyNTE4MC4wDQoyNzg2LDcwNjQwLjANCjI3ODcsMTE5ODAwLjANCjI3ODgsODg5NDAuMA0KMjc4OSwyNDU2MDAuMA0KMjc5MCw5NzUzMC4wDQoyNzkxLDEyODk4MC4wDQoyNzkyLDk5NzQwLjANCjI3OTMsMTc4OTkwLjANCjI3OTQsMTE5OTYwLjANCjI3OTUsMTE3NzkwLjQNCjI3OTYsOTkzOTAuMA0KMjc5NywxOTkzOTUuMA0KMjc5OCwxMDUxNjAuMA0KMjc5OSwxMjEyMDAuMA0KMjgwMCw5MzI2MC4wDQoyODAxLDExNzQwMC4wDQoyODAyLDEyNDYwMC40DQoyODAzLDE4MzU1MC4wDQoyODA0LDE2Nzk5MC4wDQoyODA1LDEwODY1NS4wDQoyODA2LDk3NTkwLjANCjI4MDcsMTQ3NjkwLjANCjI4MDgsMTQwODUwLjANCjI4MDksMTM0MjQwLjANCjI4MTAsMTMyMDQwLjANCjI4MTEsMTU4MTUwLjANCjI4MTIsMTQ4ODI1LjANCjI4MTMsMTY2NjUxLjANCjI4MTQsMTYyOTExLjANCjI4MTUsMTA2MzUwLjANCjI4MTYsMjM4MDUwLjANCjI4MTcsMTUwNjY1LjANCjI4MTgsMTIwNzI1LjANCjI4MTksMTgzNTUwLjANCjI4MjAsMTI4NTIwLjANCjI4MjEsMTEwNDc1LjANCjI4MjIsMTc5MzI1LjANCjI4MjMsMjQwMjUwLjANCjI4MjQsMTgwOTI1LjANCjI4MjUsMTY0MjUwLjANCjI4MjYsMTM2MTcwLjANCjI4MjcsMTMzMzUwLjANCjI4MjgsMTk1NTAwLjANCjI4MjksMTg1NTM1LjANCjI4MzAsMjM3NTgxLjQNCjI4MzEsMTkyOTkwLjANCjI4MzIsMjAzMjY3LjQNCjI4MzMsMjQ2MjEyLjgNCjI4MzQsMjQxMzkzLjMNCjI4MzUsMjE4MzQwLjANCjI4MzYsMTk1MzUwLjANCjI4MzcsMTU1NzQwLjANCjI4MzgsMTUzNTkwLjANCjI4MzksMTg1MTIwLjANCjI4NDAsMTg2MDYyLjkNCjI4NDEsMjEwNDgyLjUNCjI4NDIsMjE4NzAwLjANCjI4NDMsMTU1MTAwLjANCjI4NDQsMTU1MjY1LjANCjI4NDUsMTE1MjAwLjANCjI4NDYsMjE1MzY1LjANCjI4NDcsMTk4NDQ1LjANCjI4NDgsMjIxMjkwLjANCjI4NDksMjA5MzkwLjANCjI4NTAsMjY3NDIxLjMNCjI4NTEsMjM3Mjc1LjANCjI4NTIsMjMxMzkwLjANCjI4NTMsMjM0MzY5LjANCjI4NTQsMTM3MzMzLjMzMzMzMzMzMzM0DQoyODU1LDE4Mjg4NS4wDQoyODU2LDIxMzU3Ny41DQoyODU3LDE4MTk4OC41DQoyODU4LDE4ODc4OC40DQoyODU5LDExMTU1MC4wDQoyODYwLDExODEwMC4wDQoyODYxLDEzNzQ1Mi41DQoyODYyLDIwNDg5MC4wDQoyODYzLDExNTg4My4zMzMzMzMzMzMzNA0KMjg2NCwyNzUwNTAuMA0KMjg2NSwxNDE4OTAuMA0KMjg2NiwxNTUyMjAuMA0KMjg2Nyw5MDYxMC4wDQoyODY4LDEzMTE2NS4wDQoyODY5LDEwMTI1MC4wDQoyODcwLDE0MTIzMC4wDQoyODcxLDEwNDMyNS4wDQoyODcyLDc0MDQwLjANCjI4NzMsMTE0MzMwLjANCjI4NzQsMTM5ODYyLjUNCjI4NzUsMTIxMzAwLjANCjI4NzYsMTQ5NzgwLjANCjI4NzcsMTU3MzIwLjANCjI4NzgsMTU3NzUwLjANCjI4NzksMTIyNjUwLjANCjI4ODAsMTA5NTM3LjUNCjI4ODEsMTQzNjMwLjANCjI4ODIsMTU4NjQ1LjANCjI4ODMsMTQ3NzAwLjANCjI4ODQsMTY2MjgwLjANCjI4ODUsMTY2MjQ1LjANCjI4ODYsMTY4MDMwLjANCjI4ODcsMTA2MzAwLjANCjI4ODgsMTI3MTc1LjANCjI4ODksNjIxNzAuMA0KMjg5MCw4Njg4MC4wDQoyODkxLDEzNjg5MC4wDQoyODkyLDU3ODEwLjANCjI4OTMsMTEyMzkwLjANCjI4OTQsNjQzNTAuMA0KMjg5NSwyNTQyOTAuMA0KMjg5NiwyNDM1NTAuMA0KMjg5NywxOTI5MjUuMA0KMjg5OCwxNzIyMTAuNQ0KMjg5OSwyNDU0NjAuMA0KMjkwMCwxNjExMzAuMA0KMjkwMSwxODQ2NTAuMA0KMjkwMiwxODY3OTQuMA0KMjkwMywzMzg1MzYuOQ0KMjkwNCwzMjIxMzUuMg0KMjkwNSwxMDE4NTAuMA0KMjkwNiwxOTg1NDAuMA0KMjkwNywxMTgzNTYuMA0KMjkwOCwxMjY1NTAuMA0KMjkwOSwxNDAzODAuNQ0KMjkxMCw3NDM4MC4wDQoyOTExLDk1NzUwLjANCjI5MTIsMTUxMjEwLjANCjI5MTMsOTY5NTAuMA0KMjkxNCw5MjMwMC4wDQoyOTE1LDkyMzAwLjANCjI5MTYsOTczNTAuMA0KMjkxNywxNDE3NzUuMA0KMjkxOCwxMjQ0NjAuMA0KMjkxOSwyMzI4MDAuMA0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "aYIVb00fQCzJCWMBOtuosw==", - "Date": "Thu, 29 Sep 2022 23:46:38 GMT", - "ETag": "\u00220x8DAA274DA951A4B\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "2aFsOTZTAck=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Wed, 12 Oct 2022 11:43:02 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "f5cd635f-072b-43d7-88f1-0528a3cc360a", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "d4b84133-60eb-48da-9960-707785719349", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train/MLTable?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:39 GMT", - "x-ms-meta-name": "f08a31da-005d-44af-88f5-ae5958a9574e", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "21f30c3c-4d6f-4a93-a5e4-10385366bacf", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:46:38 GMT", - "ETag": "\u00220x8DAA274DA9F790D\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:39 GMT", + "Date": "Wed, 12 Oct 2022 12:06:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -567,32 +492,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:38 GMT", + "Date": "Wed, 12 Oct 2022 12:06:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-174e82215972969f22ba14b688b4735a-2652c4f836eeb852-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0bcee2b6cca1f0e16fcdbce82dffe5e8-5cf908a432bdb148-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56cb5223-5500-4300-926a-59f6b53c40d1", - "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-correlation-request-id": "370e4cf8-1244-407f-a91e-64b5952db13d", + "x-ms-ratelimit-remaining-subscription-reads": "11909", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234639Z:56cb5223-5500-4300-926a-59f6b53c40d1", - "x-request-time": "0.094" + "x-ms-routing-request-id": "JAPANEAST:20221012T120612Z:370e4cf8-1244-407f-a91e-64b5952db13d", + "x-request-time": "0.106" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -607,17 +528,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -631,29 +552,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:39 GMT", + "Date": "Wed, 12 Oct 2022 12:06:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-62c91f2b632f57be3c05859ba57ead3d-91c8d73a3a69fa2e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4c9c4ba475991a4e41aba3b1a1e3f687-66861934f3f5875c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb056afa-1fba-4d78-b147-5508de2fb94f", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "5b7708b9-4cce-4af8-9ed6-13a8e5dcf394", + "x-ms-ratelimit-remaining-subscription-writes": "1144", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234640Z:eb056afa-1fba-4d78-b147-5508de2fb94f", - "x-request-time": "0.114" + "x-ms-routing-request-id": "JAPANEAST:20221012T120612Z:5b7708b9-4cce-4af8-9ed6-13a8e5dcf394", + "x-request-time": "0.136" }, "ResponseBody": { "secretsType": "AccountKey", @@ -661,127 +580,68 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:40 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:12 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:39 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/valid/MLTable", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "161", "Content-MD5": "qA3bLWn7gYC8gSAWfKEZnQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:40 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cGF0aHM6DQogIC0gZmlsZTogLi9ob3VzZV9wcmljaW5nX3ZhbGlkLmNzdg0KdHJhbnNmb3JtYXRpb25zOg0KICAtIHJlYWRfZGVsaW1pdGVkOg0KICAgICAgZGVsaW1pdGVyOiAnLCcNCiAgICAgIGVuY29kaW5nOiAnYXNjaWknDQogICAgICBlbXB0eV9hc19zdHJpbmc6IGZhbHNlDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "qA3bLWn7gYC8gSAWfKEZnQ==", - "Date": "Thu, 29 Sep 2022 23:46:39 GMT", - "ETag": "\u00220x8DAA274DB1FBA22\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:40 GMT", + "Date": "Wed, 12 Oct 2022 12:06:12 GMT", + "ETag": "\u00220x8DAAC46ECC01DA7\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:43:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "hezUm5CF4Sg=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/valid/house_pricing_valid.csv", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "179", - "Content-MD5": "g92nYFZvr8RGgx53puNv9g==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:40 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "SWQsU2FsZVByaWNlDQoxNDk2LDIwNzIxMA0KMTQ5NywxOTQ5NzANCjE0OTgsMTU1NjM3LjUNCjE0OTksMTU1NzUwDQoxNTAwLDE1MzIyNy45Ng0KMTUwMSwxODE5NzANCjE1MDIsMTQ5MjI1DQoxNTAzLDI5MjI5OC40DQoxNTA0LDIzNzc4MA0KMTUwNSwyMTgyMDcuOQ0KMTUwNiwxOTc1MzANCjE1MDcsMjMzMDAwDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "g92nYFZvr8RGgx53puNv9g==", - "Date": "Thu, 29 Sep 2022 23:46:39 GMT", - "ETag": "\u00220x8DAA274DB255EA2\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:40 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "HgUscgUbAok=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Wed, 12 Oct 2022 11:43:04 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "5fa157ea-833e-4956-8813-9b48bab52765", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "a107f9f8-60e8-4810-88df-78a06e3fd992", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/valid/MLTable?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:40 GMT", - "x-ms-meta-name": "3a3289f8-c5d2-4047-94ed-3546b1950b31", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "18b731a5-9eb1-41f6-a62b-0e7a2f299cb8", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:13 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:46:39 GMT", - "ETag": "\u00220x8DAA274DB2FBD61\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:40 GMT", + "Date": "Wed, 12 Oct 2022 12:06:13 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -792,32 +652,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:39 GMT", + "Date": "Wed, 12 Oct 2022 12:06:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-5e514212a4fb82009440b9690d817a4e-83496fdcc0f87606-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1e83aa241ae2151b7d54c1a116144703-bf7545f149ab1a5d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "223e8263-adfb-4987-b3db-ea501942cedf", - "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-correlation-request-id": "60149e77-fb83-47d7-b573-45ce2eceae2d", + "x-ms-ratelimit-remaining-subscription-reads": "11908", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234640Z:223e8263-adfb-4987-b3db-ea501942cedf", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T120613Z:60149e77-fb83-47d7-b573-45ce2eceae2d", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -832,17 +688,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -856,29 +712,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:40 GMT", + "Date": "Wed, 12 Oct 2022 12:06:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d36e08ae29f9f63b8a643259e7f0b5fc-e3c9f589e5bb652e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ec0834e3d542ca74397ba3762e17863e-c5b72ddd38e205a7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88b64e41-45bf-4c63-83f8-003724018a1f", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "454586b8-33ac-4e75-9d76-6a64849bf53b", + "x-ms-ratelimit-remaining-subscription-writes": "1143", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234640Z:88b64e41-45bf-4c63-83f8-003724018a1f", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T120614Z:454586b8-33ac-4e75-9d76-6a64849bf53b", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -886,132 +740,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/test/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/test/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:40 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:40 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/test/MLTable", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "160", "Content-MD5": "\u002Bzzu\u002BdOpxOfZaP9Md/7L5A==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:41 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cGF0aHM6DQogIC0gZmlsZTogLi9ob3VzZV9wcmljaW5nX3Rlc3QuY3N2DQp0cmFuc2Zvcm1hdGlvbnM6DQogIC0gcmVhZF9kZWxpbWl0ZWQ6DQogICAgICBkZWxpbWl0ZXI6ICcsJw0KICAgICAgZW5jb2Rpbmc6ICdhc2NpaScNCiAgICAgIGVtcHR5X2FzX3N0cmluZzogZmFsc2UNCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "\u002Bzzu\u002BdOpxOfZaP9Md/7L5A==", - "Date": "Thu, 29 Sep 2022 23:46:40 GMT", - "ETag": "\u00220x8DAA274DB9F8617\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:41 GMT", + "Date": "Wed, 12 Oct 2022 12:06:14 GMT", + "ETag": "\u00220x8DAAC46EE1430B8\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:43:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "qMldCIlKhO4=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/test/house_pricing_test.csv", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "179", - "Content-MD5": "g92nYFZvr8RGgx53puNv9g==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:41 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "SWQsU2FsZVByaWNlDQoxNDk2LDIwNzIxMA0KMTQ5NywxOTQ5NzANCjE0OTgsMTU1NjM3LjUNCjE0OTksMTU1NzUwDQoxNTAwLDE1MzIyNy45Ng0KMTUwMSwxODE5NzANCjE1MDIsMTQ5MjI1DQoxNTAzLDI5MjI5OC40DQoxNTA0LDIzNzc4MA0KMTUwNSwyMTgyMDcuOQ0KMTUwNiwxOTc1MzANCjE1MDcsMjMzMDAwDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "g92nYFZvr8RGgx53puNv9g==", - "Date": "Thu, 29 Sep 2022 23:46:40 GMT", - "ETag": "\u00220x8DAA274DBA15A94\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "HgUscgUbAok=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Wed, 12 Oct 2022 11:43:06 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "4aac468e-e3f9-4e9a-b323-112e7ceb4020", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "d8017298-6785-4ad5-897b-4beba05fdf61", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/test/MLTable?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/test/MLTable", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:41 GMT", - "x-ms-meta-name": "1d99559c-19bc-4724-a458-94d1327abf71", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "da87b963-373c-45f4-ac3e-0785d5d438d0", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:46:40 GMT", - "ETag": "\u00220x8DAA274DBAA8107\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:41 GMT", + "Date": "Wed, 12 Oct 2022 12:06:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1019,7 +814,7 @@ "Connection": "keep-alive", "Content-Length": "2257", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1094,7 +889,7 @@ "outputs": {}, "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3d0497ab-7a18-44b9-823f-df25ac7e4d1d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa425440-3ae8-4114-80f5-b391ba1d5f14" } }, "outputs": { @@ -1111,22 +906,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4878", + "Content-Length": "4924", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:46 GMT", + "Date": "Wed, 12 Oct 2022 12:06:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a3f72313d04cf6adfa628ffa9afaa564-4d37669c4f3b160e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-989aa3abad37cf028c14bf3fa72f94cf-b9a7a2d369b7adbd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cf57993-9e0a-44f0-b825-a01bc706609d", - "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-correlation-request-id": "3d0befb0-a075-487f-8de4-ac91e5b6462f", + "x-ms-ratelimit-remaining-subscription-writes": "1090", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234647Z:9cf57993-9e0a-44f0-b825-a01bc706609d", - "x-request-time": "4.519" + "x-ms-routing-request-id": "JAPANEAST:20221012T120623Z:3d0befb0-a075-487f-8de4-ac91e5b6462f", + "x-request-time": "4.659" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1157,7 +952,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1165,7 +961,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -1227,7 +1024,7 @@ "outputs": {}, "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3d0497ab-7a18-44b9-823f-df25ac7e4d1d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa425440-3ae8-4114-80f5-b391ba1d5f14" } }, "inputs": { @@ -1261,8 +1058,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:46:46.9025322\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:06:22.9781817\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json index 3d1722ea96cef..ee377886c77b4 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:48 GMT", + "Date": "Wed, 12 Oct 2022 11:57:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7762c5a6eee7d29f5fc937f133e43e85-548a2b065244906d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b18785ff05ba14c2ad660959f2ba47b0-fb26ae6f0e8e9052-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0807944-b830-4d41-b8b5-fa721d0ce702", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "f3fb3176-ff19-43a5-a9d7-005ef5081337", + "x-ms-ratelimit-remaining-subscription-reads": "11981", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233948Z:a0807944-b830-4d41-b8b5-fa721d0ce702", - "x-request-time": "0.241" + "x-ms-routing-request-id": "JAPANEAST:20221012T115728Z:f3fb3176-ff19-43a5-a9d7-005ef5081337", + "x-request-time": "0.227" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:49 GMT", + "Date": "Wed, 12 Oct 2022 11:57:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-10d3c5cb9c3c9f26c796d6b36ae13307-6217973d1230b8c3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-355b23942fa1e36dd5ae8bb4a5c258c6-2ba21b7f91abd36d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5f002d3-7fd5-4b72-8770-2e00c3907f97", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "207115c7-7b45-4e2b-bcb5-da1eeabe89e6", + "x-ms-ratelimit-remaining-subscription-reads": "11980", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233949Z:d5f002d3-7fd5-4b72-8770-2e00c3907f97", - "x-request-time": "0.094" + "x-ms-routing-request-id": "JAPANEAST:20221012T115730Z:207115c7-7b45-4e2b-bcb5-da1eeabe89e6", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:49 GMT", + "Date": "Wed, 12 Oct 2022 11:57:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-951262e98656cba9143e683158c465a3-5e4e9e8c307b44ec-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-431b57cabb21b8ed2ad5831d946b29bd-3250e71bfd6ef38f-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": "8cd57f27-83fd-4aec-a6b2-c7da3ab95bf7", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "95449275-7226-4ada-b56b-8e694b35ee2f", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233949Z:8cd57f27-83fd-4aec-a6b2-c7da3ab95bf7", - "x-request-time": "0.122" + "x-ms-routing-request-id": "JAPANEAST:20221012T115731Z:95449275-7226-4ada-b56b-8e694b35ee2f", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:49 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:31 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:49 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "29", "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:39:50 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cHJpbnQoIkhlbGxvIFB5dGhvbiBXb3JsZCIpDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", - "Date": "Thu, 29 Sep 2022 23:39:49 GMT", - "ETag": "\u00220x8DAA273E6AB3B5A\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:50 GMT", + "Date": "Wed, 12 Oct 2022 11:57:31 GMT", + "ETag": "\u00220x8DA9D48FCB3C574\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:50:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "v/fP24wAaEk=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:50:02 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "72ed944a-4d68-4730-aa2d-a3747ae1d41e", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:50 GMT", - "x-ms-meta-name": "e7f56006-5122-4354-90d2-1b4a05f248b7", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:31 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:39:49 GMT", - "ETag": "\u00220x8DAA273E6B524F7\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:50 GMT", + "Date": "Wed, 12 Oct 2022 11:57:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -295,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -305,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "820", + "Content-Length": "818", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:50 GMT", + "Date": "Wed, 12 Oct 2022 11:57:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-98a0959c1898aad1ba9be02b8eed71fa-d8bb595ba0f9dfdf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7f57f0d5e6b164778d6496ba74b0f370-dc0b0228f38d2d34-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9af018c7-6dab-4983-90ba-8720da5e06ed", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "24c2ce75-6320-41a0-b397-632f5539e07e", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233950Z:9af018c7-6dab-4983-90ba-8720da5e06ed", - "x-request-time": "0.406" + "x-ms-routing-request-id": "JAPANEAST:20221012T115732Z:24c2ce75-6320-41a0-b397-632f5539e07e", + "x-request-time": "0.190" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -341,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:39:50.749915\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:50:04.0825375\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:50.749915\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:57:32.0868445\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -362,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "629", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -372,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -391,24 +343,24 @@ "Cache-Control": "no-cache", "Content-Length": "1494", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:54 GMT", + "Date": "Wed, 12 Oct 2022 11:57:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-44460f2b553bcad87f77f88872e92c02-1057ab6012b17128-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fcd7f2db98862889b2c2409cc1203070-dba64b2499b420c2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eefba90-ac7b-448f-8601-38548d3f83ea", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "b0ffedd1-7f01-4747-92b7-02083b23c50a", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233954Z:1eefba90-ac7b-448f-8601-38548d3f83ea", - "x-request-time": "3.485" + "x-ms-routing-request-id": "JAPANEAST:20221012T115733Z:b0ffedd1-7f01-4747-92b7-02083b23c50a", + "x-request-time": "1.130" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e65df99c-3207-408b-a1cd-5d4182e2dd6c", - "name": "e65df99c-3207-408b-a1cd-5d4182e2dd6c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8218810-b051-4e15-bae2-6b01204d03be", + "name": "f8218810-b051-4e15-bae2-6b01204d03be", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -418,11 +370,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "e65df99c-3207-408b-a1cd-5d4182e2dd6c", + "version": "f8218810-b051-4e15-bae2-6b01204d03be", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -432,17 +384,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:53.8568662\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:34:30.2037725\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:53.8568662\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:34:30.6768068\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -450,7 +402,7 @@ "Connection": "keep-alive", "Content-Length": "945", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -477,7 +429,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e65df99c-3207-408b-a1cd-5d4182e2dd6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8218810-b051-4e15-bae2-6b01204d03be" } }, "outputs": {}, @@ -489,22 +441,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2789", + "Content-Length": "2835", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:58 GMT", + "Date": "Wed, 12 Oct 2022 11:57:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-82395b3d6bcfb669df1473809f84c36f-492dacee218b5db6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a08001f3f020ce061b3cababf81c18a3-1b73221f27d15c9f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab1a38c4-12cd-45bb-8c5b-3e32cc50bfa7", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "6b0e8b06-098e-40eb-9891-13db9ee68bc1", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233958Z:ab1a38c4-12cd-45bb-8c5b-3e32cc50bfa7", - "x-request-time": "2.418" + "x-ms-routing-request-id": "JAPANEAST:20221012T115740Z:6b0e8b06-098e-40eb-9891-13db9ee68bc1", + "x-request-time": "3.504" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -534,7 +486,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -542,7 +495,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -568,7 +522,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e65df99c-3207-408b-a1cd-5d4182e2dd6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8218810-b051-4e15-bae2-6b01204d03be" } }, "inputs": {}, @@ -576,8 +530,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:39:58.3631931\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:57:40.0362889\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json index 9e5f77d94b535..921b7dd43f699 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:13 GMT", + "Date": "Wed, 12 Oct 2022 11:58:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-daa34ea806f6aa893626698e83c03194-8b271eda5ee17025-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-73f5ff28d92c11c14378a7456c1b2ddc-5440edee5df34bc8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "176f75e6-66a8-41ed-8058-107e961a546c", - "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-correlation-request-id": "c2c4af31-5d52-4f9d-a4cc-4dc383250457", + "x-ms-ratelimit-remaining-subscription-reads": "11977", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234013Z:176f75e6-66a8-41ed-8058-107e961a546c", - "x-request-time": "0.226" + "x-ms-routing-request-id": "JAPANEAST:20221012T115803Z:c2c4af31-5d52-4f9d-a4cc-4dc383250457", + "x-request-time": "0.248" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:13 GMT", + "Date": "Wed, 12 Oct 2022 11:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-81c3f8eb240280c3986201ebae07c37e-29b3d8c63411a52f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-50e616b18ef4891d5f6077b18aec4e62-b12a7612921cb693-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb059159-632c-4d39-bbc3-ca364c10803c", - "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-correlation-request-id": "3d33007c-2109-4ed7-94e8-a225d7795215", + "x-ms-ratelimit-remaining-subscription-reads": "11976", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234014Z:fb059159-632c-4d39-bbc3-ca364c10803c", - "x-request-time": "0.100" + "x-ms-routing-request-id": "JAPANEAST:20221012T115805Z:3d33007c-2109-4ed7-94e8-a225d7795215", + "x-request-time": "0.108" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:14 GMT", + "Date": "Wed, 12 Oct 2022 11:58:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2fba81fd4fe9c49f554b207d5f2e4ea0-155bc10b3b966ac6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f90a7db3c600fb37eb08cf0add12b2cc-478a46344a9c4fe4-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": "04f4b7a0-212d-4706-9c05-834d6a42264d", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "be52fbc3-8c3d-424e-83f6-1c1187fd0b6f", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234014Z:04f4b7a0-212d-4706-9c05-834d6a42264d", - "x-request-time": "0.098" + "x-ms-routing-request-id": "JAPANEAST:20221012T115806Z:be52fbc3-8c3d-424e-83f6-1c1187fd0b6f", + "x-request-time": "0.106" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:14 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:06 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:40:14 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "53", "Content-MD5": "JcVyvV7VC/XN43pN0fqtww==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:40:14 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cHJpbnQoIkhlbGxvIFB5dGhvbiBXb3JsZC4uLlxuSSdtIGNvbXBvbmVudCBBIDotKSIpDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "JcVyvV7VC/XN43pN0fqtww==", - "Date": "Thu, 29 Sep 2022 23:40:14 GMT", - "ETag": "\u00220x8DAA273F5675C75\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:14 GMT", + "Date": "Wed, 12 Oct 2022 11:58:06 GMT", + "ETag": "\u00220x8DAAC45CF845BBA\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:35:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "pQmlw\u002BE/kgY=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:35:05 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "23a21c5a-9fb4-412e-8256-98f2dc1f1d4d", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/componentA_src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:14 GMT", - "x-ms-meta-name": "31180212-08ec-4596-b82c-f0bad38aa5ac", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:06 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:40:14 GMT", - "ETag": "\u00220x8DAA273F57082E6\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:14 GMT", + "Date": "Wed, 12 Oct 2022 11:58:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/31180212-08ec-4596-b82c-f0bad38aa5ac/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/23a21c5a-9fb4-412e-8256-98f2dc1f1d4d/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -295,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "303", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -305,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentA_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "833", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:14 GMT", + "Date": "Wed, 12 Oct 2022 11:58:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/31180212-08ec-4596-b82c-f0bad38aa5ac/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-bbe463d788a2d5151f0c1b19c3f047e6-143600816b9429d6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9f7fde78b3d0cfba2e7a0f71c45ba698-b44c919a302200e5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "188a25d0-54c9-46db-a65d-9ab5d205517c", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "b63b1d96-a334-4983-a750-7f39d950470d", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234015Z:188a25d0-54c9-46db-a65d-9ab5d205517c", - "x-request-time": "0.456" + "x-ms-routing-request-id": "JAPANEAST:20221012T115807Z:b63b1d96-a334-4983-a750-7f39d950470d", + "x-request-time": "0.183" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/31180212-08ec-4596-b82c-f0bad38aa5ac/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/23a21c5a-9fb4-412e-8256-98f2dc1f1d4d/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -341,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentA_src" }, "systemData": { - "createdAt": "2022-09-29T23:40:15.2359209\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:06.8305791\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:15.2359209\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:58:07.0178305\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -362,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "621", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -372,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/31180212-08ec-4596-b82c-f0bad38aa5ac/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/23a21c5a-9fb4-412e-8256-98f2dc1f1d4d/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -391,24 +343,24 @@ "Cache-Control": "no-cache", "Content-Length": "1486", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:18 GMT", + "Date": "Wed, 12 Oct 2022 11:58:08 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b7eca7661b6d59931317177d417d763e-9b08f861210e7d11-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-31c172972d83566e5e37a26233333d4b-8c607c1cbe98412e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9ba5fe4-1dcb-4e2b-8583-12f5fa567559", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "5dfc9a30-a1de-4bd1-a19a-c26accbe2a2f", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234019Z:d9ba5fe4-1dcb-4e2b-8583-12f5fa567559", - "x-request-time": "3.726" + "x-ms-routing-request-id": "JAPANEAST:20221012T115808Z:5dfc9a30-a1de-4bd1-a19a-c26accbe2a2f", + "x-request-time": "1.075" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82cbc21c-162c-4774-9d6e-dd9da6adc0f9", - "name": "82cbc21c-162c-4774-9d6e-dd9da6adc0f9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bbf1ba6b-56bc-4a74-a6aa-26a144b72108", + "name": "bbf1ba6b-56bc-4a74-a6aa-26a144b72108", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -418,11 +370,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "82cbc21c-162c-4774-9d6e-dd9da6adc0f9", + "version": "bbf1ba6b-56bc-4a74-a6aa-26a144b72108", "display_name": "componentA", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/31180212-08ec-4596-b82c-f0bad38aa5ac/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/23a21c5a-9fb4-412e-8256-98f2dc1f1d4d/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -432,11 +384,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:40:18.8282751\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:08.8228797\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:18.8282751\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:35:09.2892785\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -448,32 +400,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:19 GMT", + "Date": "Wed, 12 Oct 2022 11:58:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-30fa47aabef86b9eacb3e17e35306e56-703448fc2b161988-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9c6aba04539e01eda30d57029f034e0a-32883bb6fa9535dc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2effe250-5a5c-4418-a97d-5e34da853f12", - "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-correlation-request-id": "16fe1273-f467-4f70-871e-2a3f220b291a", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234019Z:2effe250-5a5c-4418-a97d-5e34da853f12", - "x-request-time": "0.091" + "x-ms-routing-request-id": "JAPANEAST:20221012T115809Z:16fe1273-f467-4f70-871e-2a3f220b291a", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -488,17 +436,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -512,29 +460,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:19 GMT", + "Date": "Wed, 12 Oct 2022 11:58:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-de91e43091c6d8e424b07a15affaec54-b3cd231f896ff486-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bbd9b48e009f87a071d371fa70844a83-04f7e33daa16a314-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": "86eb44b9-8160-41ce-a7eb-af5897c8af98", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "2014cb18-35b5-4393-a4d9-148e34a5661c", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234020Z:86eb44b9-8160-41ce-a7eb-af5897c8af98", - "x-request-time": "0.094" + "x-ms-routing-request-id": "JAPANEAST:20221012T115809Z:2014cb18-35b5-4393-a4d9-148e34a5661c", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -542,98 +488,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:20 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:40:19 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "53", "Content-MD5": "luoaNFw6so/d3O4t2zB6qQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:40:20 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cHJpbnQoIkhlbGxvIFB5dGhvbiBXb3JsZC4uLlxuSSdtIGNvbXBvbmVudCBCIDotKSIpDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "luoaNFw6so/d3O4t2zB6qQ==", - "Date": "Thu, 29 Sep 2022 23:40:19 GMT", - "ETag": "\u00220x8DAA273F8B7E171\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:20 GMT", + "Date": "Wed, 12 Oct 2022 11:58:09 GMT", + "ETag": "\u00220x8DAAC45D2BB1972\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:35:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "EYFsNtCphQs=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:35:11 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "fc5347ff-5918-4bd8-9000-1a6c5285e454", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/componentB_src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:20 GMT", - "x-ms-meta-name": "46eed0d0-ac3a-4500-8fb8-d8734a1eab0a", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:10 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:40:19 GMT", - "ETag": "\u00220x8DAA273F8C1A406\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:20 GMT", + "Date": "Wed, 12 Oct 2022 11:58:10 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46eed0d0-ac3a-4500-8fb8-d8734a1eab0a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fc5347ff-5918-4bd8-9000-1a6c5285e454/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -641,7 +562,7 @@ "Connection": "keep-alive", "Content-Length": "303", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -651,31 +572,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentB_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "833", + "Content-Length": "832", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:20 GMT", + "Date": "Wed, 12 Oct 2022 11:58:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46eed0d0-ac3a-4500-8fb8-d8734a1eab0a/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b81207a24d03cb657032c27473eefa48-ed9d89a624cf03f6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-44f0f4fe5d810bc22c042fa491bd548b-2723bc5c98b1eb5f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c19074f7-2877-4ab6-bdc6-35cff5f463cc", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "3230b53a-df60-4e95-827c-d63b20024fae", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234021Z:c19074f7-2877-4ab6-bdc6-35cff5f463cc", - "x-request-time": "0.393" + "x-ms-routing-request-id": "JAPANEAST:20221012T115811Z:3230b53a-df60-4e95-827c-d63b20024fae", + "x-request-time": "0.192" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46eed0d0-ac3a-4500-8fb8-d8734a1eab0a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fc5347ff-5918-4bd8-9000-1a6c5285e454/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -687,14 +608,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentB_src" }, "systemData": { - "createdAt": "2022-09-29T23:40:20.8844249\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:12.0696128\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:20.8844249\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:58:10.910898\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -708,7 +629,7 @@ "Connection": "keep-alive", "Content-Length": "621", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -718,7 +639,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46eed0d0-ac3a-4500-8fb8-d8734a1eab0a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fc5347ff-5918-4bd8-9000-1a6c5285e454/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -737,24 +658,24 @@ "Cache-Control": "no-cache", "Content-Length": "1486", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:23 GMT", + "Date": "Wed, 12 Oct 2022 11:58:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8671998fcd39d1879e4ff1de2794a4ef-4369425cdc3f20c8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d043c3602bb67f18fb9739298a4854eb-2dca74f2675ab665-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "465b9450-0cab-4713-a996-84e367f1d7c1", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "bec5c05e-faf0-4924-bfca-3c67dfb354eb", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234024Z:465b9450-0cab-4713-a996-84e367f1d7c1", - "x-request-time": "3.223" + "x-ms-routing-request-id": "JAPANEAST:20221012T115812Z:bec5c05e-faf0-4924-bfca-3c67dfb354eb", + "x-request-time": "1.111" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a35dda2d-1e6d-4029-ab2c-8116aabb510d", - "name": "a35dda2d-1e6d-4029-ab2c-8116aabb510d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7469b4e7-ef60-49d2-b37d-a73dfe0aefe5", + "name": "7469b4e7-ef60-49d2-b37d-a73dfe0aefe5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -764,11 +685,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a35dda2d-1e6d-4029-ab2c-8116aabb510d", + "version": "7469b4e7-ef60-49d2-b37d-a73dfe0aefe5", "display_name": "componentB", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46eed0d0-ac3a-4500-8fb8-d8734a1eab0a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fc5347ff-5918-4bd8-9000-1a6c5285e454/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -778,11 +699,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:40:23.8686873\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:13.9117716\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:23.8686873\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:35:14.3662152\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -794,32 +715,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:24 GMT", + "Date": "Wed, 12 Oct 2022 11:58:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-695972ebd51b38747cbb7edde68ec97d-cdef7f8c5a9f3b0b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-328ce4adcfe99221a6474258df4f2bbf-c945a6261759049d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "541a7ff5-6c8a-484b-b0c8-f9a78dd2ceb8", - "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-correlation-request-id": "5f40439e-15d1-46bf-bdb8-4d387c601b20", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234024Z:541a7ff5-6c8a-484b-b0c8-f9a78dd2ceb8", - "x-request-time": "0.079" + "x-ms-routing-request-id": "JAPANEAST:20221012T115813Z:5f40439e-15d1-46bf-bdb8-4d387c601b20", + "x-request-time": "0.096" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -834,17 +751,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -858,29 +775,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:24 GMT", + "Date": "Wed, 12 Oct 2022 11:58:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-185cb9e382fd0a24e8372cf81e164c77-8c7236843e7f1c07-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-49ffe19ff7644afbd89c4b75d1868e55-a5a289a741ae1eb4-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": "fbdd6b7b-dc43-4dd8-b2a7-4a1ce20992a0", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "8c19877a-c6c6-480c-9096-3779c86124e4", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234025Z:fbdd6b7b-dc43-4dd8-b2a7-4a1ce20992a0", - "x-request-time": "0.113" + "x-ms-routing-request-id": "JAPANEAST:20221012T115813Z:8c19877a-c6c6-480c-9096-3779c86124e4", + "x-request-time": "0.149" }, "ResponseBody": { "secretsType": "AccountKey", @@ -888,98 +803,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:25 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:13 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:40:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "53", "Content-MD5": "Z/lGktRqBkhugTlnvieIFw==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:40:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cHJpbnQoIkhlbGxvIFB5dGhvbiBXb3JsZC4uLlxuSSdtIGNvbXBvbmVudCBDIDotKSIpDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "Z/lGktRqBkhugTlnvieIFw==", - "Date": "Thu, 29 Sep 2022 23:40:24 GMT", - "ETag": "\u00220x8DAA273FB94A6C0\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:25 GMT", + "Date": "Wed, 12 Oct 2022 11:58:13 GMT", + "ETag": "\u00220x8DAAC45D58DF3D1\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:35:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "ffkrZT8kdw8=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:35:15 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "5b8377be-a40f-45cf-ad14-f7beb62d4469", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/componentC_src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:25 GMT", - "x-ms-meta-name": "a5319e98-08b8-4d2f-b2b5-163bb4e1731e", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:13 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:40:24 GMT", - "ETag": "\u00220x8DAA273FB9DCD25\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:25 GMT", + "Date": "Wed, 12 Oct 2022 11:58:13 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5319e98-08b8-4d2f-b2b5-163bb4e1731e/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5b8377be-a40f-45cf-ad14-f7beb62d4469/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -987,7 +877,7 @@ "Connection": "keep-alive", "Content-Length": "303", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -997,31 +887,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentC_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "833", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:25 GMT", + "Date": "Wed, 12 Oct 2022 11:58:13 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5319e98-08b8-4d2f-b2b5-163bb4e1731e/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b07b89dca0143d0a5eca418657640d2e-ded4a3a919464b4a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-623fb481658e9b64f682f39cc2d28ded-a947b93e0c58da44-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "590dbc57-e778-46d4-906f-4a4ababf05d1", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "a01ef717-5db2-4ee8-b300-88c267ecbd5b", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234026Z:590dbc57-e778-46d4-906f-4a4ababf05d1", - "x-request-time": "0.384" + "x-ms-routing-request-id": "JAPANEAST:20221012T115814Z:a01ef717-5db2-4ee8-b300-88c267ecbd5b", + "x-request-time": "0.189" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5319e98-08b8-4d2f-b2b5-163bb4e1731e/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5b8377be-a40f-45cf-ad14-f7beb62d4469/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1033,14 +923,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentC_src" }, "systemData": { - "createdAt": "2022-09-29T23:40:25.8738349\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:16.7702685\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:25.8738349\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:58:14.5464289\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1054,7 +944,7 @@ "Connection": "keep-alive", "Content-Length": "621", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1064,7 +954,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5319e98-08b8-4d2f-b2b5-163bb4e1731e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5b8377be-a40f-45cf-ad14-f7beb62d4469/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -1083,24 +973,24 @@ "Cache-Control": "no-cache", "Content-Length": "1486", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:29 GMT", + "Date": "Wed, 12 Oct 2022 11:58:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-eddc7f2fd7394e5e84b89f15bd808d18-7614da28d47e2b60-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cce83b42ec52777176ab5cab2365079d-f0a103ee336ceb8b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c13cecb9-6c33-42da-a40b-d6410d06e6fd", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "2d283f5d-2d83-4732-8a68-cfb3cb84d605", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234029Z:c13cecb9-6c33-42da-a40b-d6410d06e6fd", - "x-request-time": "3.364" + "x-ms-routing-request-id": "JAPANEAST:20221012T115816Z:2d283f5d-2d83-4732-8a68-cfb3cb84d605", + "x-request-time": "1.086" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2bce623b-ea6d-4fd5-8050-ecb504fc4332", - "name": "2bce623b-ea6d-4fd5-8050-ecb504fc4332", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4993d148-ba5b-4986-9ee0-0f56b977ad54", + "name": "4993d148-ba5b-4986-9ee0-0f56b977ad54", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1110,11 +1000,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2bce623b-ea6d-4fd5-8050-ecb504fc4332", + "version": "4993d148-ba5b-4986-9ee0-0f56b977ad54", "display_name": "componentC", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5319e98-08b8-4d2f-b2b5-163bb4e1731e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5b8377be-a40f-45cf-ad14-f7beb62d4469/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1124,17 +1014,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:40:29.0712281\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:18.6909817\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:29.0712281\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:35:19.1729185\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1142,7 +1032,7 @@ "Connection": "keep-alive", "Content-Length": "1980", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1170,7 +1060,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82cbc21c-162c-4774-9d6e-dd9da6adc0f9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bbf1ba6b-56bc-4a74-a6aa-26a144b72108" }, "component_b_job": { "resources": null, @@ -1186,7 +1076,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a35dda2d-1e6d-4029-ab2c-8116aabb510d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7469b4e7-ef60-49d2-b37d-a73dfe0aefe5" }, "component_c_job": { "resources": null, @@ -1202,7 +1092,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2bce623b-ea6d-4fd5-8050-ecb504fc4332" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4993d148-ba5b-4986-9ee0-0f56b977ad54" } }, "outputs": {}, @@ -1214,22 +1104,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4108", + "Content-Length": "4154", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:34 GMT", + "Date": "Wed, 12 Oct 2022 11:58:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-28dfaa423205a898c0844131da4e80ad-27181a94069d3802-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-158f06e4850a96ee705e91f3ee86d8be-3046568b6226551e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "919daef6-68b9-4662-bce6-38e5584e8607", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "c8de973b-b790-4df3-b45e-43a490e90722", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234035Z:919daef6-68b9-4662-bce6-38e5584e8607", - "x-request-time": "3.893" + "x-ms-routing-request-id": "JAPANEAST:20221012T115823Z:c8de973b-b790-4df3-b45e-43a490e90722", + "x-request-time": "2.956" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1260,7 +1150,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1268,7 +1159,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1294,7 +1186,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82cbc21c-162c-4774-9d6e-dd9da6adc0f9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bbf1ba6b-56bc-4a74-a6aa-26a144b72108" }, "component_b_job": { "resources": null, @@ -1310,7 +1202,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a35dda2d-1e6d-4029-ab2c-8116aabb510d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7469b4e7-ef60-49d2-b37d-a73dfe0aefe5" }, "component_c_job": { "resources": null, @@ -1326,7 +1218,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2bce623b-ea6d-4fd5-8050-ecb504fc4332" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4993d148-ba5b-4986-9ee0-0f56b977ad54" } }, "inputs": {}, @@ -1334,8 +1226,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:40:34.6035888\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:58:22.5527902\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json index 6673f413686b2..8fefc990c7d02 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:00 GMT", + "Date": "Wed, 12 Oct 2022 11:57:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-73a6a0133224a49b0f3d701ffee52927-b8f2ab5cae8b89df-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b0387e5163d538709e1bacefc41c0678-41e1a099392837d2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f80a1c62-63df-443a-b296-211288f440b3", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "de47b270-d6ca-4706-877b-f6f3534cd239", + "x-ms-ratelimit-remaining-subscription-reads": "11979", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234001Z:f80a1c62-63df-443a-b296-211288f440b3", - "x-request-time": "0.270" + "x-ms-routing-request-id": "JAPANEAST:20221012T115745Z:de47b270-d6ca-4706-877b-f6f3534cd239", + "x-request-time": "0.223" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:01 GMT", + "Date": "Wed, 12 Oct 2022 11:57:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-937b6369865febfafadec28716591de3-3dac70b8ec91b2d0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ce7c29a01b7faa8d79a4898303307039-9187a5b30d590988-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d4c9b4c-365f-47ac-8095-bd0bf049db9d", - "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-correlation-request-id": "e3a00f44-a75c-4a73-a7ed-3990ae7bddb9", + "x-ms-ratelimit-remaining-subscription-reads": "11978", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234001Z:1d4c9b4c-365f-47ac-8095-bd0bf049db9d", - "x-request-time": "0.139" + "x-ms-routing-request-id": "JAPANEAST:20221012T115747Z:e3a00f44-a75c-4a73-a7ed-3990ae7bddb9", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:01 GMT", + "Date": "Wed, 12 Oct 2022 11:57:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2c1819ca003d032926e7527d63e9e4ce-02699ecc1efcf1c7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7f72dfe017d32e98e0b958ac5e15e261-f9b17f6caf5ac43f-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": "f48449d3-deb6-405b-b310-7e23f38b3768", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "d7f98b26-848d-4de9-886a-7bed0352bdef", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234002Z:f48449d3-deb6-405b-b310-7e23f38b3768", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221012T115748Z:d7f98b26-848d-4de9-886a-7bed0352bdef", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:02 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:40:01 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:40:02 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lDQoNCnByaW50KCJIZWxsbyBQeXRob24gV29ybGQiKQ0KDQpwYXJzZXIgPSBhcmdwYXJzZS5Bcmd1bWVudFBhcnNlcigpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWlucHV0X2RhdGEiLCB0eXBlPXN0cikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0taW5wdXRfc3RyaW5nIiwgdHlwZT1zdHIpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLW91dHB1dF9kYXRhIiwgdHlwZT1zdHIpDQoNCmFyZ3MgPSBwYXJzZXIucGFyc2VfYXJncygpDQoNCnByaW50KCJzYW1wbGVfaW5wdXRfc3RyaW5nOiAlcyIgJSBhcmdzLmlucHV0X3N0cmluZykNCnByaW50KCJzYW1wbGVfaW5wdXRfZGF0YSBwYXRoOiAlcyIgJSBhcmdzLmlucHV0X2RhdGEpDQpwcmludCgic2FtcGxlX291dHB1dF9kYXRhIHBhdGg6ICVzIiAlIGFyZ3Mub3V0cHV0X2RhdGEpDQoNCnByaW50KCJmaWxlcyBpbiBpbnB1dF9kYXRhIHBhdGg6ICIpDQphcnIgPSBvcy5saXN0ZGlyKGFyZ3MuaW5wdXRfZGF0YSkNCnByaW50KGFycikNCg0KZm9yIGZpbGVuYW1lIGluIGFycjoNCiAgICBwcmludCgicmVhZGluZyBmaWxlOiAlcyAuLi4iICUgZmlsZW5hbWUpDQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLmlucHV0X2RhdGEsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6DQogICAgICAgIHByaW50KGhhbmRsZS5yZWFkKCkpDQoNCmN1cl90aW1lX3N0ciA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWS0lSC0lTS0lUyIpDQoNCnByaW50KCJXcml0aW5nIGZpbGU6ICVzIiAlIG9zLnBhdGguam9pbihhcmdzLm91dHB1dF9kYXRhLCAiZmlsZS0iICsgY3VyX3RpbWVfc3RyICsgIi50eHQiKSkNCndpdGggb3Blbihvcy5wYXRoLmpvaW4oYXJncy5vdXRwdXRfZGF0YSwgImZpbGUtIiArIGN1cl90aW1lX3N0ciArICIudHh0IiksICJ3dCIpIGFzIHRleHRfZmlsZToNCiAgICBwcmludChmIkxvZ2dpbmcgZGF0ZSB0aW1lOiB7Y3VyX3RpbWVfc3RyfSIsIGZpbGU9dGV4dF9maWxlKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", - "Date": "Thu, 29 Sep 2022 23:40:01 GMT", - "ETag": "\u00220x8DAA273EDFF75C9\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:02 GMT", + "Date": "Wed, 12 Oct 2022 11:57:48 GMT", + "ETag": "\u00220x8DAAC45C362FCEB\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:34:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "rEVahtqeE1o=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:34:45 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "03fe8359-965b-416e-bdce-be64efe42fdf", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:02 GMT", - "x-ms-meta-name": "2b75d87b-16ba-45fc-816d-9211e50ca66a", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:40:01 GMT", - "ETag": "\u00220x8DAA273EE0C4530\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:02 GMT", + "Date": "Wed, 12 Oct 2022 11:57:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -295,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -305,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:02 GMT", + "Date": "Wed, 12 Oct 2022 11:57:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-de6a391343804d686339c3b21ef15b27-25c5e97c28605749-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e991f241508089ac921ac5444ebd780f-45139b14dabf6b82-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45a5dfb5-5d10-4626-b0cf-deba768027a8", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "c36edf2d-f1d7-48ee-80f2-4c950661fdd9", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234003Z:45a5dfb5-5d10-4626-b0cf-deba768027a8", - "x-request-time": "0.422" + "x-ms-routing-request-id": "JAPANEAST:20221012T115749Z:c36edf2d-f1d7-48ee-80f2-4c950661fdd9", + "x-request-time": "0.219" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -341,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:40:02.9187654\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:34:46.2848243\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:02.9187654\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:57:49.2708522\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -362,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "936", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -372,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -403,24 +355,24 @@ "Cache-Control": "no-cache", "Content-Length": "2014", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:06 GMT", + "Date": "Wed, 12 Oct 2022 11:57:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-777ea3f5c23367d7ed49033a4cc33118-6732031acdb303a4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-373d6328c2c1a54cc47bd8f0e3464ccb-56ef64ddda97186e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20d9b402-c61e-45d5-9b52-7fdf25033221", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "a3d37eee-4ba0-4bf8-80c1-03e9930c5842", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234007Z:20d9b402-c61e-45d5-9b52-7fdf25033221", - "x-request-time": "3.568" + "x-ms-routing-request-id": "JAPANEAST:20221012T115751Z:a3d37eee-4ba0-4bf8-80c1-03e9930c5842", + "x-request-time": "1.247" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/062c4b32-275e-4dbf-bc5d-b5f0cdb2713e", - "name": "062c4b32-275e-4dbf-bc5d-b5f0cdb2713e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b9f26e48-ef14-4fd2-8750-5b6873fcdedb", + "name": "b9f26e48-ef14-4fd2-8750-5b6873fcdedb", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -430,7 +382,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "062c4b32-275e-4dbf-bc5d-b5f0cdb2713e", + "version": "b9f26e48-ef14-4fd2-8750-5b6873fcdedb", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -450,7 +402,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -460,17 +412,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:40:06.0936754\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:34:48.3143964\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:06.0936754\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:34:48.8007409\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -478,7 +430,7 @@ "Connection": "keep-alive", "Content-Length": "1583", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -528,7 +480,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/062c4b32-275e-4dbf-bc5d-b5f0cdb2713e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b9f26e48-ef14-4fd2-8750-5b6873fcdedb" } }, "outputs": { @@ -545,22 +497,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3885", + "Content-Length": "3931", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:10 GMT", + "Date": "Wed, 12 Oct 2022 11:57:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4c472f32ae6eb37b248fd28325b8b48b-692656435bf46e1c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b67886f365f69a50d27c03c2d095c701-79ee81426ffa009b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e35a83f5-5f53-48d9-a167-a59d33c91549", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "b532a24c-a610-45a8-ba2d-243b20b39f1c", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234011Z:e35a83f5-5f53-48d9-a167-a59d33c91549", - "x-request-time": "2.572" + "x-ms-routing-request-id": "JAPANEAST:20221012T115757Z:b532a24c-a610-45a8-ba2d-243b20b39f1c", + "x-request-time": "2.938" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -590,7 +542,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -598,7 +551,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -638,7 +592,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/062c4b32-275e-4dbf-bc5d-b5f0cdb2713e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b9f26e48-ef14-4fd2-8750-5b6873fcdedb" } }, "inputs": { @@ -665,8 +619,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:40:10.7597905\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:57:57.2132788\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json index 5177de9a6f4b5..c7070acab9f0e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json @@ -7,287 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1016", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "048e0538-e686-4131-afc6-85a88239ef56", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTUS2:20220929T234147Z:048e0538-e686-4131-afc6-85a88239ef56", - "x-request-time": "0.059" - }, - "ResponseBody": { - "error": { - "code": "UserError", - "message": "Data version sampledata1235:2 (dataContainerName:version) not found.", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "c89d6da114912a72c815a033f2ef8d62", - "request": "edae80953949c4ae" - } - } - }, - { - "type": "Environment", - "info": { - "value": "master" - } - }, - { - "type": "Location", - "info": { - "value": "westus2" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-29T23:41:47.6257658\u002B00:00" - } - }, - { - "type": "InnerError", - "info": { - "value": { - "code": "NotFoundError", - "innerError": null - } - } - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:41:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f2535e507012ba36033ba5ede0641338-7f97017e2bca39f0-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2acb3108-0411-4f4c-b2d0-af77aa3bf5ec", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234147Z:2acb3108-0411-4f4c-b2d0-af77aa3bf5ec", - "x-request-time": "0.085" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", - "name": "workspaceblobstore", - "type": "Microsoft.MachineLearningServices/workspaces/datastores", - "properties": { - "description": null, - "tags": null, - "properties": null, - "isDefault": true, - "credentials": { - "credentialsType": "AccountKey" - }, - "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", - "endpoint": "core.windows.net", - "protocol": "https", - "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" - }, - "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", - "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", - "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "lastModifiedByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:41:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4aa3be787a364ebdacb3483719524f13-5c39e2b631a9b262-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": "235a3272-72b3-4c4a-8f22-9f2eaedd336f", - "x-ms-ratelimit-remaining-subscription-writes": "1177", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234148Z:235a3272-72b3-4c4a-8f22-9f2eaedd336f", - "x-request-time": "0.087" - }, - "ResponseBody": { - "secretsType": "AccountKey", - "key": "dGhpcyBpcyBmYWtlIGtleQ==" - } - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample.csv", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:48 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "508", - "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", - "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:41:47 GMT", - "ETag": "\u00220x8DAA2741556AC06\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:08 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", - "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:41:08 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "72cab38d-4569-46a4-a4b0-0ba143159543", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e073ba76-2f78-4900-9ea8-be1fb5baab29", - "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:48 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:41:47 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/sampledata1235/versions/2?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "258", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "description": "sample dataset", - "properties": {}, - "tags": {}, - "isAnonymous": false, - "isArchived": false, - "dataType": "uri_folder", - "dataUri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data" - } - }, - "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "839", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:48 GMT", + "Date": "Wed, 12 Oct 2022 11:59:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/sampledata1235/versions/2?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8704a031c6469c5df5d8bcb62627a2c4-b77b1e0f0b331645-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7f7dfa77f8289ebc4a3002766bc27291-61b5b7a79e78c125-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e98d033-102e-40be-8083-cc7542a5c729", - "x-ms-ratelimit-remaining-subscription-writes": "1156", + "x-ms-correlation-request-id": "14714714-1acf-43da-8891-0454f3d8dd61", + "x-ms-ratelimit-remaining-subscription-reads": "11962", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234148Z:1e98d033-102e-40be-8083-cc7542a5c729", - "x-request-time": "0.250" + "x-ms-routing-request-id": "JAPANEAST:20221012T115949Z:14714714-1acf-43da-8891-0454f3d8dd61", + "x-request-time": "0.055" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/sampledata1235/versions/2", @@ -303,10 +44,10 @@ "dataType": "uri_folder" }, "systemData": { - "createdAt": "2022-09-29T23:41:48.5265152\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:36:58.4043592\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:48.5551585\u002B00:00" + "lastModifiedAt": "2022-10-12T11:36:58.4352303\u002B00:00" } } }, @@ -317,32 +58,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:49 GMT", + "Date": "Wed, 12 Oct 2022 11:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3fd8ff8b768b6b701feb10620a86a168-84297f160980567d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7fe6ae8cd09486c5526d7872cbd2a687-f806a778201161d4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e694a233-be9a-4897-869e-443fa59a9b72", - "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-correlation-request-id": "f26c53e2-2cce-4306-b892-7b2b0168e818", + "x-ms-ratelimit-remaining-subscription-reads": "11961", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234149Z:e694a233-be9a-4897-869e-443fa59a9b72", - "x-request-time": "0.240" + "x-ms-routing-request-id": "JAPANEAST:20221012T115951Z:f26c53e2-2cce-4306-b892-7b2b0168e818", + "x-request-time": "0.236" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -351,8 +88,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -366,36 +103,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -412,32 +136,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:50 GMT", + "Date": "Wed, 12 Oct 2022 11:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c2c3599da2194d78bc97a719c8d6249d-bb160c0f05cc52c7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e20141cabec1aa45167d6b83b9b83ca6-04b9de80be828a4e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfa7b5f3-091f-40ff-8d5e-616e1c9bb0b7", - "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-correlation-request-id": "a2ddfa06-adb2-4bfa-87b8-c537ae2ad555", + "x-ms-ratelimit-remaining-subscription-reads": "11960", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234150Z:cfa7b5f3-091f-40ff-8d5e-616e1c9bb0b7", - "x-request-time": "0.244" + "x-ms-routing-request-id": "JAPANEAST:20221012T115952Z:a2ddfa06-adb2-4bfa-87b8-c537ae2ad555", + "x-request-time": "0.247" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -446,8 +166,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -461,36 +181,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -507,32 +214,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:50 GMT", + "Date": "Wed, 12 Oct 2022 11:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-1215ce21a491806ec5bb09c85d55ff44-ad85c5438425bedc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3eb64316a426719e7c530f477102919b-c97dd29178198845-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3a67311-7d07-40be-b7e4-845d54434571", - "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-correlation-request-id": "6050e98f-2b71-40b2-9378-3f6253a3dff3", + "x-ms-ratelimit-remaining-subscription-reads": "11959", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234150Z:a3a67311-7d07-40be-b7e4-845d54434571", - "x-request-time": "0.129" + "x-ms-routing-request-id": "JAPANEAST:20221012T115953Z:6050e98f-2b71-40b2-9378-3f6253a3dff3", + "x-request-time": "0.092" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -547,17 +250,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -571,29 +274,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:50 GMT", + "Date": "Wed, 12 Oct 2022 11:59:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b632c808bb020bdbf3cc67df53744449-e3ca57badf1940e5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fe658bc39d96266477c127356c2a6fff-eb4e866d89f75040-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2342fa06-58c4-4c91-9072-5cba42ae28a1", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "8a79479e-ca04-43ba-8fd1-ce72026d90aa", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234150Z:2342fa06-58c4-4c91-9072-5cba42ae28a1", - "x-request-time": "0.093" + "x-ms-routing-request-id": "JAPANEAST:20221012T115953Z:8a79479e-ca04-43ba-8fd1-ce72026d90aa", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -601,15 +302,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:50 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -618,9 +319,9 @@ "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:41:49 GMT", - "ETag": "\u00220x8DAA273EE0C4530\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:02 GMT", + "Date": "Wed, 12 Oct 2022 11:59:53 GMT", + "ETag": "\u00220x8DAAC45C362FCEB\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:34:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -629,32 +330,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:40:02 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:34:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2b75d87b-16ba-45fc-816d-9211e50ca66a", + "x-ms-meta-name": "03fe8359-965b-416e-bdce-be64efe42fdf", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:50 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:41:50 GMT", + "Date": "Wed, 12 Oct 2022 11:59:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -662,12 +363,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -675,7 +376,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -685,35 +386,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:51 GMT", + "Date": "Wed, 12 Oct 2022 11:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4749a1c95282b592e9a29921aeafda54-a8d6fab59e57c645-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a9a0cad10f1a8cf855d1edeb5a1ab2d2-bb22a1afce781c2a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c16b460-9313-48f1-ada2-c8d65f199b98", - "x-ms-ratelimit-remaining-subscription-writes": "1155", + "x-ms-correlation-request-id": "ddae3960-9cc6-45e8-81d7-678574137c0c", + "x-ms-ratelimit-remaining-subscription-writes": "1162", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234151Z:3c16b460-9313-48f1-ada2-c8d65f199b98", - "x-request-time": "0.188" + "x-ms-routing-request-id": "JAPANEAST:20221012T115954Z:ddae3960-9cc6-45e8-81d7-678574137c0c", + "x-request-time": "0.197" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -725,14 +422,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:40:02.9187654\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:34:46.2848243\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:51.0249298\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:59:54.4981109\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -746,7 +443,7 @@ "Connection": "keep-alive", "Content-Length": "928", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -756,7 +453,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -785,26 +482,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2005", + "Content-Length": "2006", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:53 GMT", + "Date": "Wed, 12 Oct 2022 11:59:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f2d13e6a21873a05753d472bf15505dd-011105c66d25ddde-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7c117409440a9c0d2e44a76add3ed23e-72155fc91deff6ad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da8e6235-c680-4530-85e4-3eea9689a3b9", - "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-correlation-request-id": "6f567553-3bc9-4185-8e9d-d8cb9509aaa5", + "x-ms-ratelimit-remaining-subscription-writes": "1161", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234153Z:da8e6235-c680-4530-85e4-3eea9689a3b9", - "x-request-time": "2.547" + "x-ms-routing-request-id": "JAPANEAST:20221012T115956Z:6f567553-3bc9-4185-8e9d-d8cb9509aaa5", + "x-request-time": "1.231" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df", - "name": "94c221ef-9264-4975-908a-a7c8402544df", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", + "name": "0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -814,7 +511,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "94c221ef-9264-4975-908a-a7c8402544df", + "version": "0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -834,7 +531,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -844,17 +541,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:41:07.0317521\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:36:06.5814918\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:07.563857\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:36:07.0427595\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -862,7 +559,7 @@ "Connection": "keep-alive", "Content-Length": "2699", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -912,7 +609,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" }, "mltable_job": { "resources": null, @@ -938,7 +635,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" } }, "outputs": { @@ -955,22 +652,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5241", + "Content-Length": "5287", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:58 GMT", + "Date": "Wed, 12 Oct 2022 12:00:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-60173df25c730742fa16e8b45c37de34-b4b0283be7329a1d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-34307fc1eaae89e7e2fefc77a7d537ff-bcc23adcc2edd0c3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3dc5183-7ee0-46fd-81f8-a46a3ee72c80", - "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-correlation-request-id": "2679dff5-1f40-4263-89e3-e6c73acdf03b", + "x-ms-ratelimit-remaining-subscription-writes": "1160", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234158Z:f3dc5183-7ee0-46fd-81f8-a46a3ee72c80", - "x-request-time": "3.017" + "x-ms-routing-request-id": "JAPANEAST:20221012T120003Z:2679dff5-1f40-4263-89e3-e6c73acdf03b", + "x-request-time": "3.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1000,7 +697,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1008,7 +706,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -1048,7 +747,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" }, "mltable_job": { "resources": null, @@ -1074,7 +773,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" } }, "inputs": { @@ -1101,8 +800,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:41:57.9601049\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:00:03.0512308\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json index ecbb9d0000531..e107b76f60093 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:30 GMT", + "Date": "Wed, 12 Oct 2022 11:59:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2a66e8d55095519f479a44d3e1e85072-ac7bff2e91cb57c3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-180b9fc0478b7e883ba209845e4b27fb-8a8ee550f3d45910-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05b823be-cc46-42c4-9ca6-54f1a86f1c8d", - "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-correlation-request-id": "76ed6bb6-98b1-4fe6-9e9b-3cb716cfbf28", + "x-ms-ratelimit-remaining-subscription-reads": "11964", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234131Z:05b823be-cc46-42c4-9ca6-54f1a86f1c8d", - "x-request-time": "0.234" + "x-ms-routing-request-id": "JAPANEAST:20221012T115931Z:76ed6bb6-98b1-4fe6-9e9b-3cb716cfbf28", + "x-request-time": "0.240" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:31 GMT", + "Date": "Wed, 12 Oct 2022 11:59:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e8a43fdb1a457b8f9302fba61e690aff-a3a9b852fd775da0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-94e8c01ddf177b033382f714f6cfa62f-1510b1b492a5d6a1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8768d68d-a696-4e2d-926a-720bb8225b92", - "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-correlation-request-id": "7a61d4c7-eb36-4a9d-b0b5-2b877a527f40", + "x-ms-ratelimit-remaining-subscription-reads": "11963", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234132Z:8768d68d-a696-4e2d-926a-720bb8225b92", - "x-request-time": "0.136" + "x-ms-routing-request-id": "JAPANEAST:20221012T115934Z:7a61d4c7-eb36-4a9d-b0b5-2b877a527f40", + "x-request-time": "0.100" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:31 GMT", + "Date": "Wed, 12 Oct 2022 11:59:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-25ee4193954f7857970859288370b380-9b6879628cd40c37-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a68e535ba0ef29d23627a605299e9d78-8d0c14f0871d3397-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d5e8412-94bd-40fd-8146-f8416663ac88", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "6b3b1d4e-b3d5-4f38-8eba-12d9c8d4953c", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234132Z:9d5e8412-94bd-40fd-8146-f8416663ac88", - "x-request-time": "0.179" + "x-ms-routing-request-id": "JAPANEAST:20221012T115934Z:6b3b1d4e-b3d5-4f38-8eba-12d9c8d4953c", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:32 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:41:32 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "1257", "Content-MD5": "HHF60uhwTbG40SR3o9T4UA==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:41:32 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lDQpmcm9tIHBhdGhsaWIgaW1wb3J0IFBhdGgNCg0KcHJpbnQoIkhlbGxvIFB5dGhvbiBXb3JsZCIpDQoNCnBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKCkNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0taW5wdXRfZGF0YSIsIHR5cGU9c3RyKQ0KcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1pbnB1dF9zdHJpbmciLCB0eXBlPXN0cikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tb3V0cHV0X2RhdGEiLCB0eXBlPXN0cikNCg0KYXJncyA9IHBhcnNlci5wYXJzZV9hcmdzKCkNCg0KcHJpbnQoInNhbXBsZV9pbnB1dF9zdHJpbmc6ICVzIiAlIGFyZ3MuaW5wdXRfc3RyaW5nKQ0KcHJpbnQoInNhbXBsZV9pbnB1dF9kYXRhIHBhdGg6ICVzIiAlIGFyZ3MuaW5wdXRfZGF0YSkNCnByaW50KCJzYW1wbGVfb3V0cHV0X2RhdGEgcGF0aDogJXMiICUgYXJncy5vdXRwdXRfZGF0YSkNCg0KZnBhdGggPSBhcmdzLmlucHV0X2RhdGENCmlmIG5vdCBvcy5wYXRoLmlzZGlyKGZwYXRoKToNCiAgICBmcGF0aCA9IFBhdGgoZnBhdGgpLnBhcmVudC5hYnNvbHV0ZSgpDQoNCnByaW50KCJmaWxlcyBpbiBpbnB1dF9kYXRhOiAiKQ0KYXJyID0gb3MubGlzdGRpcihmcGF0aCkNCnByaW50KGFycikNCg0KZm9yIGZpbGVuYW1lIGluIGFycjoNCiAgICBwcmludCgiIyMjIyMjIyMjIyMgUmVhZGluZyBmaWxlOiAlcyAuLi4iICUgZmlsZW5hbWUpDQogICAgZnAgPSBvcy5wYXRoLmpvaW4oZnBhdGgsIGZpbGVuYW1lKQ0KICAgIGlmIG9zLnBhdGguaXNmaWxlKGZwKToNCiAgICAgICAgd2l0aCBvcGVuKGZwLCAiciIpIGFzIGhhbmRsZToNCiAgICAgICAgICAgIHByaW50KGhhbmRsZS5yZWFkKCkpDQoNCmlmIGFyZ3Mub3V0cHV0X2RhdGE6DQogICAgY3VyX3RpbWVfc3RyID0gZGF0ZXRpbWUubm93KCkuc3RyZnRpbWUoIiViLSVkLSVZLSVILSVNLSVTIikNCiAgICBwcmludCgiIyMjIyMjIyMjIyMgV3JpdGluZyBmaWxlOiAlcyIgJSBvcy5wYXRoLmpvaW4oYXJncy5vdXRwdXRfZGF0YSwgImZpbGUtIiArIGN1cl90aW1lX3N0ciArICIudHh0IikpDQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLm91dHB1dF9kYXRhLCAiZmlsZS0iICsgY3VyX3RpbWVfc3RyICsgIi50eHQiKSwgInd0IikgYXMgdGV4dF9maWxlOg0KICAgICAgICBwcmludChmIkxvZ2dpbmcgZGF0ZSB0aW1lOiB7Y3VyX3RpbWVfc3RyfSIsIGZpbGU9dGV4dF9maWxlKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "HHF60uhwTbG40SR3o9T4UA==", - "Date": "Thu, 29 Sep 2022 23:41:32 GMT", - "ETag": "\u00220x8DAA27423FF47FE\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:33 GMT", + "Date": "Wed, 12 Oct 2022 11:59:34 GMT", + "ETag": "\u00220x8DAAC4608142492\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:36:40 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "GSkantk7GMU=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:36:40 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "2a6a4c65-15df-427e-a583-f4c88710a600", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:33 GMT", - "x-ms-meta-name": "52361f8c-f413-4dbf-b598-76054794cea6", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:41:32 GMT", - "ETag": "\u00220x8DAA2742408BC7F\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:33 GMT", + "Date": "Wed, 12 Oct 2022 11:59:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/52361f8c-f413-4dbf-b598-76054794cea6/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a6a4c65-15df-427e-a583-f4c88710a600/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -295,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -305,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:33 GMT", + "Date": "Wed, 12 Oct 2022 11:59:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/52361f8c-f413-4dbf-b598-76054794cea6/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d59902f554a67cbbd52cf76337614928-82615890e435cce0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c0ff6d3f21e4bdcc8e8f0b5f74c96175-cdd2e894292104a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33aeb2e2-59de-471c-a762-1a9a66c8d629", - "x-ms-ratelimit-remaining-subscription-writes": "1159", + "x-ms-correlation-request-id": "fc2f5a9a-9662-4c1e-a2e4-24c90b2cd66b", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234134Z:33aeb2e2-59de-471c-a762-1a9a66c8d629", - "x-request-time": "0.800" + "x-ms-routing-request-id": "JAPANEAST:20221012T115936Z:fc2f5a9a-9662-4c1e-a2e4-24c90b2cd66b", + "x-request-time": "0.220" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/52361f8c-f413-4dbf-b598-76054794cea6/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a6a4c65-15df-427e-a583-f4c88710a600/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -341,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:41:33.8590476\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:36:41.5844754\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:33.8590476\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:59:35.9238466\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -362,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "924", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -372,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/52361f8c-f413-4dbf-b598-76054794cea6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a6a4c65-15df-427e-a583-f4c88710a600/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -401,26 +353,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2002", + "Content-Length": "2001", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:39 GMT", + "Date": "Wed, 12 Oct 2022 11:59:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-afebfb33d5e8ad0d3448f363615e4816-abd2a4d5c39e38e7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ac7eac1f90695fac46e076a417b9f4b4-0f4f896d652f8b16-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93f784ec-5dc6-4f9c-971f-375ea1fca7b8", - "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-correlation-request-id": "58d0cafa-f6ff-495e-967e-89add80b4e0e", + "x-ms-ratelimit-remaining-subscription-writes": "1164", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234140Z:93f784ec-5dc6-4f9c-971f-375ea1fca7b8", - "x-request-time": "5.627" + "x-ms-routing-request-id": "JAPANEAST:20221012T115938Z:58d0cafa-f6ff-495e-967e-89add80b4e0e", + "x-request-time": "2.056" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d83fcbbe-6edd-48d3-8901-32526a15ab47", - "name": "d83fcbbe-6edd-48d3-8901-32526a15ab47", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3b127d4e-56ab-4b28-938a-5b7859315b50", + "name": "3b127d4e-56ab-4b28-938a-5b7859315b50", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -430,7 +382,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d83fcbbe-6edd-48d3-8901-32526a15ab47", + "version": "3b127d4e-56ab-4b28-938a-5b7859315b50", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -450,7 +402,7 @@ "type": "uri_file" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/52361f8c-f413-4dbf-b598-76054794cea6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a6a4c65-15df-427e-a583-f4c88710a600/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -460,17 +412,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:41:39.3962908\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:36:43.563357\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:39.3962908\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:36:44.0761831\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -478,7 +430,7 @@ "Connection": "keep-alive", "Content-Length": "1710", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -530,7 +482,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d83fcbbe-6edd-48d3-8901-32526a15ab47" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3b127d4e-56ab-4b28-938a-5b7859315b50" } }, "outputs": { @@ -547,22 +499,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4019", + "Content-Length": "4065", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:45 GMT", + "Date": "Wed, 12 Oct 2022 11:59:44 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-515f6bbd0044f8479216bbf4f69fe1b2-4d5aaf9cbdb73b82-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-18bdf3e4a74feefd91d7aa0252853027-e8ac8b379eaa754a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40ff6fce-b6ad-4f70-ab04-8b06976ae127", - "x-ms-ratelimit-remaining-subscription-writes": "1157", + "x-ms-correlation-request-id": "4be0be40-bf0d-4491-8c79-5d5c50bc6101", + "x-ms-ratelimit-remaining-subscription-writes": "1163", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234145Z:40ff6fce-b6ad-4f70-ab04-8b06976ae127", - "x-request-time": "4.143" + "x-ms-routing-request-id": "JAPANEAST:20221012T115944Z:4be0be40-bf0d-4491-8c79-5d5c50bc6101", + "x-request-time": "2.651" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -593,7 +545,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -601,7 +554,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -641,7 +595,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d83fcbbe-6edd-48d3-8901-32526a15ab47" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3b127d4e-56ab-4b28-938a-5b7859315b50" } }, "inputs": { @@ -668,8 +622,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:41:45.0325752\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:59:44.3372033\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json index f067fc97e8988..fc2968c05f5f6 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:18 GMT", + "Date": "Wed, 12 Oct 2022 11:59:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-28085ff88d6c8b5c96c71e068d33e4d8-86b41b38be3e1d32-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2d06c96cda3ac89efc952b012731b5c2-075e6ee7edb5d04a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd29a1ee-0d83-4e1f-ade3-57b42dfb2bf5", - "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-correlation-request-id": "9a33d1eb-8089-4c5d-a167-5c145d0ce44f", + "x-ms-ratelimit-remaining-subscription-reads": "11966", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234119Z:dd29a1ee-0d83-4e1f-ade3-57b42dfb2bf5", - "x-request-time": "0.243" + "x-ms-routing-request-id": "JAPANEAST:20221012T115915Z:9a33d1eb-8089-4c5d-a167-5c145d0ce44f", + "x-request-time": "0.235" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:19 GMT", + "Date": "Wed, 12 Oct 2022 11:59:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-069b9ca706a507eabbf14866920f5af3-e9379fc3c44c963b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9b6bc17327a1a0b265a8915b02ed4b25-5b61ee4943a7aab1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "699d2bee-2ed0-451c-9fda-b1bbb7d2e229", - "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-correlation-request-id": "3ea055a2-08a7-4e35-a9d0-2b5eb163ce20", + "x-ms-ratelimit-remaining-subscription-reads": "11965", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234120Z:699d2bee-2ed0-451c-9fda-b1bbb7d2e229", - "x-request-time": "0.107" + "x-ms-routing-request-id": "JAPANEAST:20221012T115917Z:3ea055a2-08a7-4e35-a9d0-2b5eb163ce20", + "x-request-time": "0.096" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:20 GMT", + "Date": "Wed, 12 Oct 2022 11:59:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f04c37013923d8b8e5c5ad248914629f-6896a72704f3a103-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7da085f0cca56357a9028791a449e4e5-b997ce2374a1ca4c-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": "c9fcd706-cba0-47e4-86ed-5c625f373322", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "c1c25e8d-d3ce-4b2c-8c41-a9125c6c90f6", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234121Z:c9fcd706-cba0-47e4-86ed-5c625f373322", - "x-request-time": "0.108" + "x-ms-routing-request-id": "JAPANEAST:20221012T115917Z:c1c25e8d-d3ce-4b2c-8c41-a9125c6c90f6", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:21 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:41:20 GMT", - "ETag": "\u00220x8DAA273EE0C4530\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:02 GMT", + "Date": "Wed, 12 Oct 2022 11:59:18 GMT", + "ETag": "\u00220x8DAAC45C362FCEB\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:34:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:40:02 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:34:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2b75d87b-16ba-45fc-816d-9211e50ca66a", + "x-ms-meta-name": "03fe8359-965b-416e-bdce-be64efe42fdf", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:21 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:41:20 GMT", + "Date": "Wed, 12 Oct 2022 11:59:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "821", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:20 GMT", + "Date": "Wed, 12 Oct 2022 11:59:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-047613ec918577e22f4ed3b375aa00b7-dbd18f4e7ee0ef1d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cde5b9be1a8b77eafeca3790c0088186-844d89c2794c7c3a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9474a945-3266-476e-b9cd-4a521972069a", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "f7df7705-202e-4de7-923b-7307bff1fcdf", + "x-ms-ratelimit-remaining-subscription-writes": "1168", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234121Z:9474a945-3266-476e-b9cd-4a521972069a", - "x-request-time": "0.275" + "x-ms-routing-request-id": "JAPANEAST:20221012T115919Z:f7df7705-202e-4de7-923b-7307bff1fcdf", + "x-request-time": "0.180" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:40:02.9187654\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:34:46.2848243\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:21.5566015\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:59:18.867407\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "928", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -351,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -380,26 +353,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2005", + "Content-Length": "2006", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:23 GMT", + "Date": "Wed, 12 Oct 2022 11:59:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-012084641ad989c291ceefdb8b3cc479-85c07cf263d09b32-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6ff86b628b3aa3b891470183c1b16421-9c8858a7b7c09467-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1709bdb0-ba5d-4014-83ad-1d79dbaa9bac", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "7f505c66-4a3f-4a20-bbbc-df7ced7b9d5a", + "x-ms-ratelimit-remaining-subscription-writes": "1167", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234124Z:1709bdb0-ba5d-4014-83ad-1d79dbaa9bac", - "x-request-time": "2.703" + "x-ms-routing-request-id": "JAPANEAST:20221012T115920Z:7f505c66-4a3f-4a20-bbbc-df7ced7b9d5a", + "x-request-time": "1.236" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df", - "name": "94c221ef-9264-4975-908a-a7c8402544df", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", + "name": "0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -409,7 +382,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "94c221ef-9264-4975-908a-a7c8402544df", + "version": "0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -429,7 +402,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -439,17 +412,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:41:07.0317521\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:36:06.5814918\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:07.563857\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:36:07.0427595\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -457,7 +430,7 @@ "Connection": "keep-alive", "Content-Length": "1705", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -509,7 +482,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" } }, "outputs": { @@ -526,22 +499,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4014", + "Content-Length": "4060", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:28 GMT", + "Date": "Wed, 12 Oct 2022 11:59:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-57e96e418c2fa58923522a46c89cb1d2-0cc4279c6e317e14-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-866e76805af66f30f0f24e37929461db-c77e6a1ad62d8147-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6016f867-1b94-4cd5-bc0a-c4130627758f", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "61e94941-2cc7-4d54-ae23-e841b1ffa776", + "x-ms-ratelimit-remaining-subscription-writes": "1166", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234129Z:6016f867-1b94-4cd5-bc0a-c4130627758f", - "x-request-time": "2.739" + "x-ms-routing-request-id": "JAPANEAST:20221012T115927Z:61e94941-2cc7-4d54-ae23-e841b1ffa776", + "x-request-time": "2.647" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -572,7 +545,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -580,7 +554,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -620,7 +595,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" } }, "inputs": { @@ -647,8 +622,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:41:28.6857949\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:59:26.5273427\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json index de17ab91b33e0..c74bd2b078b07 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:46 GMT", + "Date": "Wed, 12 Oct 2022 12:03:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-344a3f54c71bf55b098a1366036a5f9f-e4a3da574f1773c4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-15716c0588f8a4ee88935926eabb33b1-67cbd7b926a9ee58-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "559d3092-2b6a-4fd7-bd0f-5abcd740d806", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "408f3d01-b69e-4860-b2e0-3b8a097ffc36", + "x-ms-ratelimit-remaining-subscription-reads": "11935", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234446Z:559d3092-2b6a-4fd7-bd0f-5abcd740d806", - "x-request-time": "0.270" + "x-ms-routing-request-id": "JAPANEAST:20221012T120336Z:408f3d01-b69e-4860-b2e0-3b8a097ffc36", + "x-request-time": "0.219" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,22 +52,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:44:17.418\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:47 GMT", + "Date": "Wed, 12 Oct 2022 12:03:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a4a6f925a2f787332819bdc12e13690e-140cb02caf1e8254-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b1eceaca27d47a345a6634dabeadbd7b-16848359830eda16-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db596a87-628e-4f3a-b662-12e5867bda8b", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "5c81784c-996b-4490-9471-2285188446cc", + "x-ms-ratelimit-remaining-subscription-reads": "11934", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234447Z:db596a87-628e-4f3a-b662-12e5867bda8b", - "x-request-time": "0.108" + "x-ms-routing-request-id": "JAPANEAST:20221012T120339Z:5c81784c-996b-4490-9471-2285188446cc", + "x-request-time": "0.117" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:47 GMT", + "Date": "Wed, 12 Oct 2022 12:03:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-07629361e18f5c987fd7683d10d57dc9-a200f99ea05db8bf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bce899562f7dba73f78eabc8ee81b84c-27e39d80934587ac-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd9f6a47-90dc-450d-8f97-25e3169d8c30", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "1e235f36-e2d1-465d-bf9f-ce15c0c64bc1", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234447Z:cd9f6a47-90dc-450d-8f97-25e3169d8c30", - "x-request-time": "0.120" + "x-ms-routing-request-id": "JAPANEAST:20221012T120339Z:1e235f36-e2d1-465d-bf9f-ce15c0c64bc1", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:47 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +190,9 @@ "Content-Length": "1498", "Content-MD5": "bknQRwZOwpy5fofohDUViQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:47 GMT", - "ETag": "\u00220x8DAA273C36859FA\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:50 GMT", + "Date": "Wed, 12 Oct 2022 12:03:39 GMT", + "ETag": "\u00220x8DAAC4589F244E3\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:33:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:38:50 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:33:09 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "308d95ac-a48a-4c21-b9ea-5dcd10d2091b", + "x-ms-meta-name": "e9d88ff5-1ff9-499c-9d27-c81537d523f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:47 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:47 GMT", + "Date": "Wed, 12 Oct 2022 12:03:39 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -267,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:48 GMT", + "Date": "Wed, 12 Oct 2022 12:03:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0a0b5f106d67e4e7144db570bb045179-b9a5dab056817b98-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f6e324f9bb2448df1d0e79623f1493c4-680bf616540c0b4e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d075eef-f89d-4fde-aa90-f1ae2263d269", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "26e4942d-cb52-40e4-881f-70f9766a67f9", + "x-ms-ratelimit-remaining-subscription-writes": "1122", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234448Z:2d075eef-f89d-4fde-aa90-f1ae2263d269", - "x-request-time": "0.221" + "x-ms-routing-request-id": "JAPANEAST:20221012T120340Z:26e4942d-cb52-40e4-881f-70f9766a67f9", + "x-request-time": "0.212" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-29T23:38:51.8832274\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:11.2557972\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:48.4437388\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:03:40.3612938\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -328,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "1057", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -338,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}} ", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -376,24 +362,24 @@ "Cache-Control": "no-cache", "Content-Length": "2272", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:51 GMT", + "Date": "Wed, 12 Oct 2022 12:03:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a7244adcbca7a59e680072c385848c92-e7d5c8f3e4943beb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9460c331924c4b574de6b13f6eec1b10-e98f84aa14cbd510-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "206cc174-8f72-4de9-a55d-063bc2dd95d3", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "15012e7c-bcc0-4ff7-b866-5a56ca280b9d", + "x-ms-ratelimit-remaining-subscription-writes": "1121", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234452Z:206cc174-8f72-4de9-a55d-063bc2dd95d3", - "x-request-time": "3.331" + "x-ms-routing-request-id": "JAPANEAST:20221012T120342Z:15012e7c-bcc0-4ff7-b866-5a56ca280b9d", + "x-request-time": "1.358" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7b5091c-270a-4236-922c-27bb0b024713", - "name": "d7b5091c-270a-4236-922c-27bb0b024713", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cb6cd5a4-6ad9-4d68-9860-4d1f2698b183", + "name": "cb6cd5a4-6ad9-4d68-9860-4d1f2698b183", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -403,7 +389,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d7b5091c-270a-4236-922c-27bb0b024713", + "version": "cb6cd5a4-6ad9-4d68-9860-4d1f2698b183", "display_name": "train_job", "is_deterministic": "True", "type": "command", @@ -432,7 +418,7 @@ "type": "path" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -442,11 +428,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:44:51.4641915\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:40:35.9392777\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:51.4641915\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:40:36.4549869\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -458,32 +444,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:51 GMT", + "Date": "Wed, 12 Oct 2022 12:03:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f52c3f46e578db9c6036a63b606f9da2-ed8691d1bf736d38-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a6818cafb954de760d6bc06da120a69b-2696dfd34d30465d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1fb6d3a-305b-489d-9fb6-5b388fd59ead", - "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-correlation-request-id": "7eba1dec-baea-43c0-86cd-a9f39f3ddc37", + "x-ms-ratelimit-remaining-subscription-reads": "11933", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234452Z:c1fb6d3a-305b-489d-9fb6-5b388fd59ead", - "x-request-time": "0.096" + "x-ms-routing-request-id": "JAPANEAST:20221012T120342Z:7eba1dec-baea-43c0-86cd-a9f39f3ddc37", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -498,17 +480,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -522,29 +504,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:52 GMT", + "Date": "Wed, 12 Oct 2022 12:03:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-adfa9c71daa936e005685ff419697456-07d5b00d50ac25a6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dd0d119c3c0584e15ae957166d740771-2bb4316ceb8b099f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9459d81-f698-4341-8055-2a0ca5d94506", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "18098907-2389-4f42-b149-7c3bb78291cd", + "x-ms-ratelimit-remaining-subscription-writes": "1164", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234452Z:f9459d81-f698-4341-8055-2a0ca5d94506", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221012T120343Z:18098907-2389-4f42-b149-7c3bb78291cd", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -552,15 +532,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:52 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -569,9 +549,9 @@ "Content-Length": "939", "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:51 GMT", - "ETag": "\u00220x8DAA273C778B7D2\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:57 GMT", + "Date": "Wed, 12 Oct 2022 12:03:43 GMT", + "ETag": "\u00220x8DA9F72EB0B8DD0\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -580,32 +560,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:38:57 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:14 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "605a9aee-c119-4ee5-9b78-b0a6d1e612f5", + "x-ms-meta-name": "b2174e1b-ad3a-4c13-a542-266dbfdd2173", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:52 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:51 GMT", + "Date": "Wed, 12 Oct 2022 12:03:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -613,12 +593,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -626,7 +606,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -636,35 +616,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:52 GMT", + "Date": "Wed, 12 Oct 2022 12:03:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-aeccf6bcb491ea023971ddedd9b0d795-e3876635b311bbbf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-84a0722c031a7e8d8d189bd889c1fd1f-de559f123dca222a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d5eafaf-4b49-4fdf-a117-ef862198bd30", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "0af22186-1cf6-47d1-9928-db7e0d2cf6bd", + "x-ms-ratelimit-remaining-subscription-writes": "1120", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234453Z:0d5eafaf-4b49-4fdf-a117-ef862198bd30", - "x-request-time": "0.176" + "x-ms-routing-request-id": "JAPANEAST:20221012T120344Z:0af22186-1cf6-47d1-9928-db7e0d2cf6bd", + "x-request-time": "0.192" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -676,14 +652,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-29T23:38:58.8206619\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:15.5985909\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:53.0480255\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:03:44.3621862\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -697,7 +673,7 @@ "Connection": "keep-alive", "Content-Length": "819", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -707,7 +683,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}} ", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -737,24 +713,24 @@ "Cache-Control": "no-cache", "Content-Length": "1896", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:56 GMT", + "Date": "Wed, 12 Oct 2022 12:03:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2c39542100d5869c5c0d83f38f60a2a6-410e4d26e0e36252-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0ee1499c7246963174b45a32036773c6-534dc3fcafe15003-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62fe4a04-9186-4adc-a440-7d2c41a16d35", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "61c72de2-2132-4178-81fd-ebd94133a86e", + "x-ms-ratelimit-remaining-subscription-writes": "1119", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234457Z:62fe4a04-9186-4adc-a440-7d2c41a16d35", - "x-request-time": "3.762" + "x-ms-routing-request-id": "JAPANEAST:20221012T120346Z:61c72de2-2132-4178-81fd-ebd94133a86e", + "x-request-time": "1.239" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ab053b5e-4b79-4d9c-889c-baa6d318b1ca", - "name": "ab053b5e-4b79-4d9c-889c-baa6d318b1ca", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8cc6b91f-7c7c-4651-a9ec-d72932991f2d", + "name": "8cc6b91f-7c7c-4651-a9ec-d72932991f2d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -764,7 +740,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ab053b5e-4b79-4d9c-889c-baa6d318b1ca", + "version": "8cc6b91f-7c7c-4651-a9ec-d72932991f2d", "display_name": "score_job", "is_deterministic": "True", "type": "command", @@ -783,7 +759,7 @@ "type": "path" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -793,11 +769,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:44:56.4830145\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:40:41.5472429\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:56.4830145\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:40:42.0967095\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -809,32 +785,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:57 GMT", + "Date": "Wed, 12 Oct 2022 12:03:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3b6a09f4aaf52a17a905e775f33c1eb3-31b282f2a5150d2c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-602269d1cf2ea0ae81b4b8466ab1d5ae-3e0858e8aaaa7898-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f582605d-a086-4cc2-9603-fa51473a3185", - "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-correlation-request-id": "db58f735-4c5d-4ee4-9e29-76e3d7237e53", + "x-ms-ratelimit-remaining-subscription-reads": "11932", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234457Z:f582605d-a086-4cc2-9603-fa51473a3185", - "x-request-time": "0.117" + "x-ms-routing-request-id": "JAPANEAST:20221012T120346Z:db58f735-4c5d-4ee4-9e29-76e3d7237e53", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -849,17 +821,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -873,29 +845,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:57 GMT", + "Date": "Wed, 12 Oct 2022 12:03:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0fba2a0fbbdab3fb81596bd04719efea-528671dc2d164f54-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e3999fdba7c5e8737be012da7838cdbd-7155db1a3a40c685-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94e232ab-0dfe-4f6d-9edc-bc9b14c15867", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "9981d2cc-88e7-4193-9a35-40d28610e3b2", + "x-ms-ratelimit-remaining-subscription-writes": "1163", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234457Z:94e232ab-0dfe-4f6d-9edc-bc9b14c15867", - "x-request-time": "0.085" + "x-ms-routing-request-id": "JAPANEAST:20221012T120347Z:9981d2cc-88e7-4193-9a35-40d28610e3b2", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -903,15 +873,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:57 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -920,9 +890,9 @@ "Content-Length": "795", "Content-MD5": "Oc7zuFZ4JNgHBd/WtIjpgw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:56 GMT", - "ETag": "\u00220x8DAA273CAF80E34\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:03 GMT", + "Date": "Wed, 12 Oct 2022 12:03:47 GMT", + "ETag": "\u00220x8DAAC4591D00A17\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:33:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -931,32 +901,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:39:03 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:33:22 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3073b5c4-877e-4e9e-ac3c-91ba028e4bc8", + "x-ms-meta-name": "30f24341-8b88-4c02-b605-0b8fc5d4169d", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:57 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:56 GMT", + "Date": "Wed, 12 Oct 2022 12:03:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -964,12 +934,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -977,7 +947,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -987,35 +957,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "827", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:57 GMT", + "Date": "Wed, 12 Oct 2022 12:03:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9c169eca794073f500078b88dc3af703-98d5834858acee84-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2aa465ce487a9b5af9795d91ec8674d8-0136a6d34bc8c103-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dbfc226-0f52-40ce-9d8d-4a8816a2d49a", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "9ce9ca4d-3328-4bc7-9554-f9e9bbcaf622", + "x-ms-ratelimit-remaining-subscription-writes": "1118", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234458Z:1dbfc226-0f52-40ce-9d8d-4a8816a2d49a", - "x-request-time": "0.202" + "x-ms-routing-request-id": "JAPANEAST:20221012T120348Z:9ce9ca4d-3328-4bc7-9554-f9e9bbcaf622", + "x-request-time": "0.172" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1027,14 +993,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-29T23:39:04.048284\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:23.0897644\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:58.1883499\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:03:48.4015636\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1048,7 +1014,7 @@ "Connection": "keep-alive", "Content-Length": "761", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1058,7 +1024,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -1085,24 +1051,24 @@ "Cache-Control": "no-cache", "Content-Length": "1779", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:01 GMT", + "Date": "Wed, 12 Oct 2022 12:03:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e722ef7bb7d3ab911e61d17f12cd7846-2dbe1c7b8b4a8f51-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ba0c360c8d4824984d227354d5876a6f-593373b4da6c1ed7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cf26193-4de7-4c85-b09f-14c08e2c1d26", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "9241647f-cd60-43c8-81fa-c46724b9f1d3", + "x-ms-ratelimit-remaining-subscription-writes": "1117", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234502Z:1cf26193-4de7-4c85-b09f-14c08e2c1d26", - "x-request-time": "3.336" + "x-ms-routing-request-id": "JAPANEAST:20221012T120350Z:9241647f-cd60-43c8-81fa-c46724b9f1d3", + "x-request-time": "1.237" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fb529fb-8fa2-4be4-b102-5e34ec25169a", - "name": "3fb529fb-8fa2-4be4-b102-5e34ec25169a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c7d394b0-d2c1-40bd-8f94-6de0dbea94d9", + "name": "c7d394b0-d2c1-40bd-8f94-6de0dbea94d9", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1112,7 +1078,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "3fb529fb-8fa2-4be4-b102-5e34ec25169a", + "version": "c7d394b0-d2c1-40bd-8f94-6de0dbea94d9", "display_name": "evaluate_job", "is_deterministic": "True", "type": "command", @@ -1127,7 +1093,7 @@ "type": "path" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1137,11 +1103,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:45:01.3229882\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:40:45.9822006\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:45:01.3229882\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:40:46.5091131\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1153,32 +1119,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:01 GMT", + "Date": "Wed, 12 Oct 2022 12:03:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fcc33b18c6eb8861a2c3bd920478c8f9-bfe818f305519150-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ec8d064d25d508e3ba243e86d496bde4-0f9fa1c72808a14c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a5ff29f-92d1-40ac-a145-555b20b7bbab", - "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-correlation-request-id": "f127b383-0249-46cc-b65c-b6c8cc408fab", + "x-ms-ratelimit-remaining-subscription-reads": "11931", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234502Z:5a5ff29f-92d1-40ac-a145-555b20b7bbab", - "x-request-time": "0.139" + "x-ms-routing-request-id": "JAPANEAST:20221012T120351Z:f127b383-0249-46cc-b65c-b6c8cc408fab", + "x-request-time": "0.113" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1193,17 +1155,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1217,29 +1179,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:02 GMT", + "Date": "Wed, 12 Oct 2022 12:03:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-99c65f52ab10f19161c77d07a5e514a5-b5d1813d19e16909-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ce83a42eef1d3ac491a3b6011e81bca8-24f1b6892727903d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffe738c3-934e-4207-9e5d-4c811dad16de", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "ce9b998b-31a7-4cf7-a8a9-1da56a21dc94", + "x-ms-ratelimit-remaining-subscription-writes": "1162", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234502Z:ffe738c3-934e-4207-9e5d-4c811dad16de", - "x-request-time": "0.119" + "x-ms-routing-request-id": "JAPANEAST:20221012T120351Z:ce9b998b-31a7-4cf7-a8a9-1da56a21dc94", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1247,15 +1207,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:02 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1264,9 +1224,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:45:01 GMT", - "ETag": "\u00220x8DAA269E17FB528\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:28:06 GMT", + "Date": "Wed, 12 Oct 2022 12:03:51 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1275,32 +1235,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:28:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "0ab9d77d-4e9d-4503-8e56-848509416826", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1f263e5d-effd-4228-b604-dc0d4c3fca59", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:02 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:01 GMT", + "Date": "Wed, 12 Oct 2022 12:03:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1308,7 +1268,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -1319,32 +1279,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:02 GMT", + "Date": "Wed, 12 Oct 2022 12:03:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2b9c69ce0cd55da164b7fd3420db84fb-04f1bb6fe79f214f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-84e5361fb337d72547143b54a0d94707-32fbdd39d4e957d0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6584d62-62ea-474e-9436-6261db058d74", - "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-correlation-request-id": "4c1471f9-4b1c-4e1f-8c79-7e39d2506750", + "x-ms-ratelimit-remaining-subscription-reads": "11930", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234503Z:c6584d62-62ea-474e-9436-6261db058d74", - "x-request-time": "0.092" + "x-ms-routing-request-id": "JAPANEAST:20221012T120352Z:4c1471f9-4b1c-4e1f-8c79-7e39d2506750", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1359,17 +1315,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1383,29 +1339,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:03 GMT", + "Date": "Wed, 12 Oct 2022 12:03:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8a1e66ec0048a5282a7a629664bb7b67-49c7982f827590db-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-609e8e5d058376ded6ce1e9deddae6f8-0914fcfd6ab97479-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b4e8b51-151e-470f-a839-1703f6137394", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "754f2188-1c23-4421-a6b7-83ff7d9dc9b8", + "x-ms-ratelimit-remaining-subscription-writes": "1161", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234503Z:5b4e8b51-151e-470f-a839-1703f6137394", - "x-request-time": "0.096" + "x-ms-routing-request-id": "JAPANEAST:20221012T120353Z:754f2188-1c23-4421-a6b7-83ff7d9dc9b8", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1413,15 +1367,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:03 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1430,9 +1384,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:45:02 GMT", - "ETag": "\u00220x8DAA269E17FB528\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:28:06 GMT", + "Date": "Wed, 12 Oct 2022 12:03:52 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1441,32 +1395,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:28:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "0ab9d77d-4e9d-4503-8e56-848509416826", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1f263e5d-effd-4228-b604-dc0d4c3fca59", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:03 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:02 GMT", + "Date": "Wed, 12 Oct 2022 12:03:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1474,12 +1428,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1487,7 +1441,7 @@ "Connection": "keep-alive", "Content-Length": "3863", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1558,7 +1512,7 @@ }, "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7b5091c-270a-4236-922c-27bb0b024713" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cb6cd5a4-6ad9-4d68-9860-4d1f2698b183" }, "score_job": { "resources": null, @@ -1588,7 +1542,7 @@ }, "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ab053b5e-4b79-4d9c-889c-baa6d318b1ca" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8cc6b91f-7c7c-4651-a9ec-d72932991f2d" }, "evaluate_job": { "resources": null, @@ -1614,7 +1568,7 @@ }, "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fb529fb-8fa2-4be4-b102-5e34ec25169a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c7d394b0-d2c1-40bd-8f94-6de0dbea94d9" } }, "outputs": { @@ -1639,22 +1593,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7269", + "Content-Length": "7315", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:08 GMT", + "Date": "Wed, 12 Oct 2022 12:04:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a955df3ffbe98bc97db81104818735e3-b3e3c6a3cbd5f1b8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8e01d7d5be35560b4ccabacaf45014df-f5ec9d1226e3641e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a142328c-475a-4081-9e70-adeaa025fa55", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "c1b0b85f-8426-45bf-a28d-2fd64d9795b9", + "x-ms-ratelimit-remaining-subscription-writes": "1116", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234509Z:a142328c-475a-4081-9e70-adeaa025fa55", - "x-request-time": "3.944" + "x-ms-routing-request-id": "JAPANEAST:20221012T120401Z:c1b0b85f-8426-45bf-a28d-2fd64d9795b9", + "x-request-time": "3.383" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1685,7 +1639,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1693,7 +1648,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1741,7 +1697,7 @@ }, "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7b5091c-270a-4236-922c-27bb0b024713" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cb6cd5a4-6ad9-4d68-9860-4d1f2698b183" }, "score_job": { "resources": null, @@ -1771,7 +1727,7 @@ }, "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ab053b5e-4b79-4d9c-889c-baa6d318b1ca" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8cc6b91f-7c7c-4651-a9ec-d72932991f2d" }, "evaluate_job": { "resources": null, @@ -1797,7 +1753,7 @@ }, "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fb529fb-8fa2-4be4-b102-5e34ec25169a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c7d394b0-d2c1-40bd-8f94-6de0dbea94d9" } }, "inputs": { @@ -1852,8 +1808,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:45:08.7247046\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:04:00.7768762\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json index e28f35c3f9bdc..c1c9c5f028316 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:47 GMT", + "Date": "Wed, 12 Oct 2022 11:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fcde857d2d31b0bbeacb74bf9680fcad-1246f38031bfcee1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-863ece6b1fab4d591963f67dc54ed9ac-2125626b75264905-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9885b45b-ef8a-4e25-a35f-df90de658fad", + "x-ms-correlation-request-id": "7641fd44-f492-4d39-a315-144a16c8763c", "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233847Z:9885b45b-ef8a-4e25-a35f-df90de658fad", - "x-request-time": "0.235" + "x-ms-routing-request-id": "JAPANEAST:20221012T115629Z:7641fd44-f492-4d39-a315-144a16c8763c", + "x-request-time": "0.236" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:48 GMT", + "Date": "Wed, 12 Oct 2022 11:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-86359ea1b817e6550172495d6449682f-b192d13d2d4cdfaa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cf9fb84385278a030682d145121cd598-dfacdde627d284cb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80ddc0b9-865b-40ed-b1dd-b058620b5361", + "x-ms-correlation-request-id": "361b89e5-2cca-437d-a5f4-872dc7d933c7", "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233848Z:80ddc0b9-865b-40ed-b1dd-b058620b5361", - "x-request-time": "0.231" + "x-ms-routing-request-id": "JAPANEAST:20221012T115629Z:361b89e5-2cca-437d-a5f4-872dc7d933c7", + "x-request-time": "0.220" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -136,8 +115,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -151,36 +130,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -197,32 +163,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:48 GMT", + "Date": "Wed, 12 Oct 2022 11:56:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8e465ba2f70cae1d7c5d18fe8a56adf5-00b1b92e139440e1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3c7eeeb64c4c17cd8be12da68b1e8d8a-c436eee92e6d82ac-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b11ce7f-a620-4867-945e-d8954f6b342a", + "x-ms-correlation-request-id": "0e5c8ecc-3800-46ac-a565-5a8e2b6075ef", "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233848Z:9b11ce7f-a620-4867-945e-d8954f6b342a", - "x-request-time": "0.259" + "x-ms-routing-request-id": "JAPANEAST:20221012T115630Z:0e5c8ecc-3800-46ac-a565-5a8e2b6075ef", + "x-request-time": "0.234" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -231,8 +193,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -246,36 +208,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -292,32 +241,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:48 GMT", + "Date": "Wed, 12 Oct 2022 11:56:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-43f9043649e67f82034c98636ad40ae8-997d4c1e4c81590a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f9a76f9fc6130017de40e41073fc5dc1-e4c9ed4ecc650e07-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a20c13c-7702-49bb-b287-2ea5d7dcbc71", + "x-ms-correlation-request-id": "1f55e88b-be9e-46db-a72e-938b6961f945", "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233849Z:5a20c13c-7702-49bb-b287-2ea5d7dcbc71", - "x-request-time": "0.248" + "x-ms-routing-request-id": "JAPANEAST:20221012T115631Z:1f55e88b-be9e-46db-a72e-938b6961f945", + "x-request-time": "0.229" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -326,8 +271,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -341,36 +286,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -387,32 +319,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:49 GMT", + "Date": "Wed, 12 Oct 2022 11:56:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-787e127e5a92998a07f5817839504157-4bb9686929d11bdb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d6935b8a949ceb27e94ce6f9702067de-91705d9e84ee127d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5223a21-5b3f-48ad-a7cc-839704dbeaf1", + "x-ms-correlation-request-id": "1d4b2506-2f24-46ec-bfef-552184e67cd9", "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233850Z:b5223a21-5b3f-48ad-a7cc-839704dbeaf1", - "x-request-time": "0.124" + "x-ms-routing-request-id": "JAPANEAST:20221012T115634Z:1d4b2506-2f24-46ec-bfef-552184e67cd9", + "x-request-time": "0.205" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -427,17 +355,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -451,29 +379,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:50 GMT", + "Date": "Wed, 12 Oct 2022 11:56:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-dc93ea027461c056d26d2b11edbe7a43-634a29fe395a37a1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c5baf437583ee555a53aaef86af79c62-5f4d21021155e37f-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": "82aa7558-5c6c-4a8f-a0be-70749b25dca9", + "x-ms-correlation-request-id": "6a64931a-8692-4b16-baee-014b07a8f32c", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233850Z:82aa7558-5c6c-4a8f-a0be-70749b25dca9", - "x-request-time": "0.130" + "x-ms-routing-request-id": "JAPANEAST:20221012T115635Z:6a64931a-8692-4b16-baee-014b07a8f32c", + "x-request-time": "0.615" }, "ResponseBody": { "secretsType": "AccountKey", @@ -481,98 +407,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:38:50 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:38:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "1498", "Content-MD5": "bknQRwZOwpy5fofohDUViQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:38:50 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lDQpmcm9tIHBhdGhsaWIgaW1wb3J0IFBhdGgNCmZyb20gdXVpZCBpbXBvcnQgdXVpZDQNCg0KcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoInRyYWluIikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tdHJhaW5pbmdfZGF0YSIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIHRvIHRyYWluaW5nIGRhdGEiKQ0KcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1tYXhfZXBvY3MiLCB0eXBlPWludCwgaGVscD0iTWF4ICMgb2YgZXBvY3MgZm9yIHRoZSB0cmFpbmluZyIpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWxlYXJuaW5nX3JhdGUiLCB0eXBlPWZsb2F0LCBoZWxwPSJMZWFybmluZyByYXRlIikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbGVhcm5pbmdfcmF0ZV9zY2hlZHVsZSIsIHR5cGU9c3RyLCBoZWxwPSJMZWFybmluZyByYXRlIHNjaGVkdWxlIikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbW9kZWxfb3V0cHV0IiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggb2Ygb3V0cHV0IG1vZGVsIikNCg0KYXJncyA9IHBhcnNlci5wYXJzZV9hcmdzKCkNCg0KcHJpbnQoImhlbGxvIHRyYWluaW5nIHdvcmxkLi4uIikNCg0KbGluZXMgPSBbDQogICAgZiJUcmFpbmluZyBkYXRhIHBhdGg6IHthcmdzLnRyYWluaW5nX2RhdGF9IiwNCiAgICBmIk1heCBlcG9jczoge2FyZ3MubWF4X2Vwb2NzfSIsDQogICAgZiJMZWFybmluZyByYXRlOiB7YXJncy5sZWFybmluZ19yYXRlfSIsDQogICAgZiJMZWFybmluZyByYXRlOiB7YXJncy5sZWFybmluZ19yYXRlX3NjaGVkdWxlfSIsDQogICAgZiJNb2RlbCBvdXRwdXQgcGF0aDoge2FyZ3MubW9kZWxfb3V0cHV0fSIsDQpdDQoNCmZvciBsaW5lIGluIGxpbmVzOg0KICAgIHByaW50KGxpbmUpDQoNCnByaW50KCJtb3VudGVkX3BhdGggZmlsZXM6ICIpDQphcnIgPSBvcy5saXN0ZGlyKGFyZ3MudHJhaW5pbmdfZGF0YSkNCnByaW50KGFycikNCg0KZm9yIGZpbGVuYW1lIGluIGFycjoNCiAgICBwcmludCgicmVhZGluZyBmaWxlOiAlcyAuLi4iICUgZmlsZW5hbWUpDQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLnRyYWluaW5nX2RhdGEsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6DQogICAgICAgIHByaW50KGhhbmRsZS5yZWFkKCkpDQoNCg0KIyBEbyB0aGUgdHJhaW4gYW5kIHNhdmUgdGhlIHRyYWluZWQgbW9kZWwgYXMgYSBmaWxlIGludG8gdGhlIG91dHB1dCBmb2xkZXIuDQojIEhlcmUgb25seSBvdXRwdXQgYSBkdW1teSBkYXRhIGZvciBkZW1vLg0KY3VydGltZSA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWSAlSDolTTolUyIpDQptb2RlbCA9IGYiVGhpcyBpcyBhIGR1bW15IG1vZGVsIHdpdGggaWQ6IHtzdHIodXVpZDQoKSl9IGdlbmVyYXRlZCBhdDoge2N1cnRpbWV9XG4iDQooUGF0aChhcmdzLm1vZGVsX291dHB1dCkgLyAibW9kZWwudHh0Iikud3JpdGVfdGV4dChtb2RlbCkNCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "bknQRwZOwpy5fofohDUViQ==", - "Date": "Thu, 29 Sep 2022 23:38:50 GMT", - "ETag": "\u00220x8DAA273C35EBE6B\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:50 GMT", + "Date": "Wed, 12 Oct 2022 11:56:36 GMT", + "ETag": "\u00220x8DAAC4589F244E3\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:33:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "vSUynltJoW4=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:33:09 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "e9d88ff5-1ff9-499c-9d27-c81537d523f2", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:38:50 GMT", - "x-ms-meta-name": "308d95ac-a48a-4c21-b9ea-5dcd10d2091b", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:36 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:38:50 GMT", - "ETag": "\u00220x8DAA273C36859FA\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:50 GMT", + "Date": "Wed, 12 Oct 2022 11:56:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -580,7 +481,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -590,31 +491,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:51 GMT", + "Date": "Wed, 12 Oct 2022 11:56:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-531b64fc1e69d57b5bea979dc4a1cb04-f597af0db1223815-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1205274ce11753b906c794dffa931794-b3b48e7b42e67682-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e8d3b09-4aff-49bf-a364-ddea1d6f42e4", + "x-ms-correlation-request-id": "7556696c-3e34-4e8a-a86a-f99a02991bbf", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233852Z:0e8d3b09-4aff-49bf-a364-ddea1d6f42e4", - "x-request-time": "0.695" + "x-ms-routing-request-id": "JAPANEAST:20221012T115639Z:7556696c-3e34-4e8a-a86a-f99a02991bbf", + "x-request-time": "1.132" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -626,14 +527,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-29T23:38:51.8832274\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:11.2557972\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:38:51.8832274\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:56:39.0060764\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -647,7 +548,7 @@ "Connection": "keep-alive", "Content-Length": "1073", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -657,7 +558,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -695,24 +596,24 @@ "Cache-Control": "no-cache", "Content-Length": "2279", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:56 GMT", + "Date": "Wed, 12 Oct 2022 11:56:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ee8e95376d958ead5856f8e60070a159-73585d6350c2750a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c424d0f8f0c588d8701e9b4af2ed3e69-fab861ef4a922504-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3af30a51-4f42-436a-91c0-45c4fcb4bf13", + "x-ms-correlation-request-id": "268dc114-0b25-44ce-b043-735f313ae6a8", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233856Z:3af30a51-4f42-436a-91c0-45c4fcb4bf13", - "x-request-time": "4.577" + "x-ms-routing-request-id": "JAPANEAST:20221012T115642Z:268dc114-0b25-44ce-b043-735f313ae6a8", + "x-request-time": "2.633" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ed65c850-2ea9-4568-bdeb-6203dae78299", - "name": "ed65c850-2ea9-4568-bdeb-6203dae78299", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b33a467-d9cc-4ff0-b771-d1380e98b776", + "name": "6b33a467-d9cc-4ff0-b771-d1380e98b776", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -722,7 +623,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ed65c850-2ea9-4568-bdeb-6203dae78299", + "version": "6b33a467-d9cc-4ff0-b771-d1380e98b776", "display_name": "Train", "is_deterministic": "True", "type": "command", @@ -751,7 +652,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -761,11 +662,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:38:56.3016624\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:15.4076858\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:38:56.3016624\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:33:15.9097238\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -777,32 +678,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:56 GMT", + "Date": "Wed, 12 Oct 2022 11:56:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-edddb1d94d71ca7de6578ffbe9e76945-a58b1a16a67172bd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fc4a89875f31ab6703782397b5e894a8-b4d207aedb9bc98d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "271b3010-a101-400d-8766-6b04b5056eed", + "x-ms-correlation-request-id": "90e1258a-cbe7-485d-9728-c089c1ef490a", "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233857Z:271b3010-a101-400d-8766-6b04b5056eed", - "x-request-time": "0.092" + "x-ms-routing-request-id": "JAPANEAST:20221012T115642Z:90e1258a-cbe7-485d-9728-c089c1ef490a", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -817,17 +714,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -841,29 +738,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:57 GMT", + "Date": "Wed, 12 Oct 2022 11:56:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c44255225a2d7cafc0bad59aa69a2ff6-0dba5ad1f552f047-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d54540fd48099fc56963bd5bc8e71b30-28dd544a59335e8d-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": "af4b383a-e5a1-447e-b5b3-a3220d880537", + "x-ms-correlation-request-id": "5e0e3d08-9f14-4699-9bec-1388ef6a2f74", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233857Z:af4b383a-e5a1-447e-b5b3-a3220d880537", - "x-request-time": "0.144" + "x-ms-routing-request-id": "JAPANEAST:20221012T115643Z:5e0e3d08-9f14-4699-9bec-1388ef6a2f74", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -871,98 +766,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:38:57 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:38:56 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "939", "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:38:57 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQpmcm9tIHBhdGhsaWIgaW1wb3J0IFBhdGgNCg0KcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoInNjb3JlIikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbW9kZWxfaW5wdXQiLCB0eXBlPXN0ciwgaGVscD0iUGF0aCBvZiBpbnB1dCBtb2RlbCIpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLXRlc3RfZGF0YSIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIHRvIHRlc3QgZGF0YSIpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLXNjb3JlX291dHB1dCIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIG9mIHNjb3Jpbmcgb3V0cHV0IikNCg0KYXJncyA9IHBhcnNlci5wYXJzZV9hcmdzKCkNCg0KcHJpbnQoImhlbGxvIHNjb3Jpbmcgd29ybGQuLi4iKQ0KDQpsaW5lcyA9IFsNCiAgICBmIk1vZGVsIHBhdGg6IHthcmdzLm1vZGVsX2lucHV0fSIsDQogICAgZiJUZXN0IGRhdGEgcGF0aDoge2FyZ3MudGVzdF9kYXRhfSIsDQogICAgZiJTY29yaW5nIG91dHB1dCBwYXRoOiB7YXJncy5zY29yZV9vdXRwdXR9IiwNCl0NCg0KZm9yIGxpbmUgaW4gbGluZXM6DQogICAgcHJpbnQobGluZSkNCg0KIyBMb2FkIHRoZSBtb2RlbCBmcm9tIGlucHV0IHBvcnQNCiMgSGVyZSBvbmx5IHByaW50IHRoZSBtb2RlbCBhcyB0ZXh0IHNpbmNlIGl0IGlzIGEgZHVtbXkgb25lDQptb2RlbCA9IChQYXRoKGFyZ3MubW9kZWxfaW5wdXQpIC8gIm1vZGVsLnR4dCIpLnJlYWRfdGV4dCgpDQpwcmludCgiTW9kZWw6ICIsIG1vZGVsKQ0KDQojIERvIHNjb3Jpbmcgd2l0aCB0aGUgaW5wdXQgbW9kZWwNCiMgSGVyZSBvbmx5IHByaW50IHRleHQgdG8gb3V0cHV0IGZpbGUgYXMgZGVtbw0KKFBhdGgoYXJncy5zY29yZV9vdXRwdXQpIC8gInNjb3JlLnR4dCIpLndyaXRlX3RleHQoIlNjb3JlZCB3aXRoIHRoZSBmb2xsb3dpbmcgbW9kZTpcbnt9Ii5mb3JtYXQobW9kZWwpKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", - "Date": "Thu, 29 Sep 2022 23:38:57 GMT", - "ETag": "\u00220x8DAA273C76F1C42\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:57 GMT", + "Date": "Wed, 12 Oct 2022 11:56:43 GMT", + "ETag": "\u00220x8DA9F72EB0B8DD0\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "HbykwwQVfRM=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:14 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "b2174e1b-ad3a-4c13-a542-266dbfdd2173", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:38:57 GMT", - "x-ms-meta-name": "605a9aee-c119-4ee5-9b78-b0a6d1e612f5", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:38:57 GMT", - "ETag": "\u00220x8DAA273C778B7D2\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:57 GMT", + "Date": "Wed, 12 Oct 2022 11:56:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -970,7 +840,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -980,31 +850,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:38:59 GMT", + "Date": "Wed, 12 Oct 2022 11:56:44 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-5916aa3df45befe14e37d8de4971ca07-969c7536a44dc345-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2f0d2938e541174dff7c2348183519e8-87ab319e8678ab2d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2bd8f1bc-2c90-455a-991e-dd3aa8208376", + "x-ms-correlation-request-id": "84acbbbf-d6d2-495b-86d6-7824c02367fe", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233859Z:2bd8f1bc-2c90-455a-991e-dd3aa8208376", - "x-request-time": "1.199" + "x-ms-routing-request-id": "JAPANEAST:20221012T115644Z:84acbbbf-d6d2-495b-86d6-7824c02367fe", + "x-request-time": "0.345" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1016,14 +886,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-29T23:38:58.8206619\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:15.5985909\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:38:58.8206619\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:56:44.2968001\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1037,7 +907,7 @@ "Connection": "keep-alive", "Content-Length": "841", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1047,7 +917,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -1077,24 +947,24 @@ "Cache-Control": "no-cache", "Content-Length": "1909", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:02 GMT", + "Date": "Wed, 12 Oct 2022 11:56:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e701e337e24294959af8a25efc3ca626-d03053938422fe71-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d27c81d4859584a87969cf3500f8ec9f-7d2bcbbb57f19dd6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a2dc2c5-604e-4632-8ef7-4f91bab65225", + "x-ms-correlation-request-id": "d2ce841f-e3f0-4cb4-aeaa-90b49788881a", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233903Z:0a2dc2c5-604e-4632-8ef7-4f91bab65225", - "x-request-time": "3.361" + "x-ms-routing-request-id": "JAPANEAST:20221012T115646Z:d2ce841f-e3f0-4cb4-aeaa-90b49788881a", + "x-request-time": "1.243" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/83c6608e-e1ce-4581-880e-04bade69ffdd", - "name": "83c6608e-e1ce-4581-880e-04bade69ffdd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5079f526-3b15-4338-9e15-3012b3ab400d", + "name": "5079f526-3b15-4338-9e15-3012b3ab400d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1104,7 +974,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "83c6608e-e1ce-4581-880e-04bade69ffdd", + "version": "5079f526-3b15-4338-9e15-3012b3ab400d", "display_name": "Score", "is_deterministic": "True", "type": "command", @@ -1123,7 +993,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1133,11 +1003,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:02.3448428\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:20.1326391\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:02.3448428\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:33:20.6935935\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1149,32 +1019,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:02 GMT", + "Date": "Wed, 12 Oct 2022 11:56:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-12771427b143b3a45d4efc80ee0f1b07-ed3837cf5d8b6ff4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-52ad891511e94e08a67c4b8d34555a3a-425ed5e96a137bb9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f14ae2c-aab4-41b4-ac0b-a0cda2bc2ea3", + "x-ms-correlation-request-id": "e507858a-bdf6-4a25-95ef-5817dee1e141", "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233903Z:1f14ae2c-aab4-41b4-ac0b-a0cda2bc2ea3", - "x-request-time": "0.119" + "x-ms-routing-request-id": "JAPANEAST:20221012T115646Z:e507858a-bdf6-4a25-95ef-5817dee1e141", + "x-request-time": "0.273" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1189,17 +1055,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1213,29 +1079,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:03 GMT", + "Date": "Wed, 12 Oct 2022 11:56:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3a9f233dddb79158b3fea71f823f3f3c-31398bc932e69020-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bbafec328f18e4fca927edd6de4f5c17-0d054ed0a87acbcc-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": "4c6c2e2f-930f-4f86-9609-6a924cca499a", + "x-ms-correlation-request-id": "6359a4d3-2079-4ac4-8d4d-66c1b9b1aa19", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233903Z:4c6c2e2f-930f-4f86-9609-6a924cca499a", - "x-request-time": "0.093" + "x-ms-routing-request-id": "JAPANEAST:20221012T115647Z:6359a4d3-2079-4ac4-8d4d-66c1b9b1aa19", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1243,98 +1107,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:03 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:02 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "795", "Content-MD5": "Oc7zuFZ4JNgHBd/WtIjpgw==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:39:03 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQpmcm9tIGRhdGV0aW1lIGltcG9ydCBkYXRldGltZQ0KZnJvbSBwYXRobGliIGltcG9ydCBQYXRoDQoNCnBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKCJzY29yZSIpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLXNjb3JpbmdfcmVzdWx0IiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggb2Ygc2NvcmluZyByZXN1bHQiKQ0KcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1ldmFsX291dHB1dCIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIG9mIG91dHB1dCBldmFsdWF0aW9uIHJlc3VsdCIpDQoNCmFyZ3MgPSBwYXJzZXIucGFyc2VfYXJncygpDQoNCnByaW50KCJoZWxsbyBldmFsdWF0aW9uIHdvcmxkLi4uIikNCg0KbGluZXMgPSBbDQogICAgZiJTY29yaW5nIHJlc3VsdCBwYXRoOiB7YXJncy5zY29yaW5nX3Jlc3VsdH0iLA0KICAgIGYiRXZhbHVhdGlvbiBvdXRwdXQgcGF0aDoge2FyZ3MuZXZhbF9vdXRwdXR9IiwNCl0NCg0KZm9yIGxpbmUgaW4gbGluZXM6DQogICAgcHJpbnQobGluZSkNCg0KIyBFdmFsdWF0ZSB0aGUgaW5jb21pbmcgc2NvcmluZyByZXN1bHQgYW5kIG91dHB1dCBldmFsdWF0aW9uIHJlc3VsdC4NCiMgSGVyZSBvbmx5IG91dHB1dCBhIGR1bW15IGZpbGUgZm9yIGRlbW8uDQpjdXJ0aW1lID0gZGF0ZXRpbWUubm93KCkuc3RyZnRpbWUoIiViLSVkLSVZICVIOiVNOiVTIikNCmV2YWxfbXNnID0gZiJFdmFsIGRvbmUgYXQge2N1cnRpbWV9XG4iDQooUGF0aChhcmdzLmV2YWxfb3V0cHV0KSAvICJldmFsX3Jlc3VsdC50eHQiKS53cml0ZV90ZXh0KGV2YWxfbXNnKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "Oc7zuFZ4JNgHBd/WtIjpgw==", - "Date": "Thu, 29 Sep 2022 23:39:02 GMT", - "ETag": "\u00220x8DAA273CAEDFD86\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:03 GMT", + "Date": "Wed, 12 Oct 2022 11:56:47 GMT", + "ETag": "\u00220x8DAAC4591D00A17\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:33:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "OcxxUeuijRc=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:33:22 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "30f24341-8b88-4c02-b605-0b8fc5d4169d", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:03 GMT", - "x-ms-meta-name": "3073b5c4-877e-4e9e-ac3c-91ba028e4bc8", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:39:02 GMT", - "ETag": "\u00220x8DAA273CAF80E34\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:03 GMT", + "Date": "Wed, 12 Oct 2022 11:56:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1342,7 +1181,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1352,31 +1191,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "825", + "Content-Length": "827", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:03 GMT", + "Date": "Wed, 12 Oct 2022 11:56:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f4a1e6367fec7d246167cfacc8e7eafc-d86de2fb6d326e35-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a54334502c583a0f1710a02a05bc3d3f-fdb3f61f41b5e13d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6568d077-81b4-4ee9-a1f8-f96d1207d8bc", + "x-ms-correlation-request-id": "184511a4-db6f-4139-ba3f-faf8089e7958", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233904Z:6568d077-81b4-4ee9-a1f8-f96d1207d8bc", - "x-request-time": "0.490" + "x-ms-routing-request-id": "JAPANEAST:20221012T115648Z:184511a4-db6f-4139-ba3f-faf8089e7958", + "x-request-time": "0.326" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1388,14 +1227,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-29T23:39:04.048284\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:23.0897644\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:04.048284\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:56:48.3426706\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1409,7 +1248,7 @@ "Connection": "keep-alive", "Content-Length": "774", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1419,7 +1258,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -1446,24 +1285,24 @@ "Cache-Control": "no-cache", "Content-Length": "1783", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:07 GMT", + "Date": "Wed, 12 Oct 2022 11:56:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0a256908261e6bc3f71e38f45fa64ba3-c1ad22a4942572c6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7b2a7ba1592e670b67ff2157ca171d9f-6f6c796b7b5cb085-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e62d42a6-acac-4471-8024-58374926d8aa", + "x-ms-correlation-request-id": "1df9bb54-e5ab-42de-b259-ce6e813331dd", "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233908Z:e62d42a6-acac-4471-8024-58374926d8aa", - "x-request-time": "3.643" + "x-ms-routing-request-id": "JAPANEAST:20221012T115650Z:1df9bb54-e5ab-42de-b259-ce6e813331dd", + "x-request-time": "1.245" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c3403657-a88d-4f44-9312-ee04c7b5982e", - "name": "c3403657-a88d-4f44-9312-ee04c7b5982e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/65132982-87ae-40cf-bf3d-e63d5bfccfa6", + "name": "65132982-87ae-40cf-bf3d-e63d5bfccfa6", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1473,7 +1312,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "c3403657-a88d-4f44-9312-ee04c7b5982e", + "version": "65132982-87ae-40cf-bf3d-e63d5bfccfa6", "display_name": "Eval", "is_deterministic": "True", "type": "command", @@ -1488,7 +1327,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1498,11 +1337,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:07.5153318\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:25.0127405\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:07.5153318\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:33:25.5662372\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1514,32 +1353,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:07 GMT", + "Date": "Wed, 12 Oct 2022 11:56:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-af7684b058511e99e5b0205b290cfde7-f2abf2bf104ac889-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-907d944208071efa3b1c4bb39839b902-ae0df002e4d10439-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3d130ad-6e3d-4f9a-a825-37d86a5eec81", + "x-ms-correlation-request-id": "47268cd4-ce45-4ae5-b77b-283b6a244057", "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233908Z:d3d130ad-6e3d-4f9a-a825-37d86a5eec81", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221012T115650Z:47268cd4-ce45-4ae5-b77b-283b6a244057", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1554,17 +1389,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1578,29 +1413,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:08 GMT", + "Date": "Wed, 12 Oct 2022 11:56:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e2a2f056215f1c7f9a8846a399b20367-829bf78b6b9397a0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0a323d999fa32cb0b15fa50b942c021a-ca835e08580f4ef1-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": "0b712cd1-2773-422b-9673-3e340617f245", + "x-ms-correlation-request-id": "7a6c8949-b6d7-4170-be06-28b0ea43a20f", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233908Z:0b712cd1-2773-422b-9673-3e340617f245", - "x-request-time": "0.107" + "x-ms-routing-request-id": "JAPANEAST:20221012T115651Z:7a6c8949-b6d7-4170-be06-28b0ea43a20f", + "x-request-time": "0.110" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1608,15 +1441,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:08 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1625,9 +1458,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:39:08 GMT", - "ETag": "\u00220x8DAA269E17FB528\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:28:06 GMT", + "Date": "Wed, 12 Oct 2022 11:56:51 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1636,32 +1469,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:28:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "0ab9d77d-4e9d-4503-8e56-848509416826", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1f263e5d-effd-4228-b604-dc0d4c3fca59", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:08 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:08 GMT", + "Date": "Wed, 12 Oct 2022 11:56:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1669,7 +1502,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -1680,32 +1513,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:08 GMT", + "Date": "Wed, 12 Oct 2022 11:56:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0bc4ca30f21561355720bf0d50ada0f0-862480230ca912f0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-714fb9ed0ce34b6e62cd49697ff7a4c9-06c13b9d289ca929-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a9ec245-0896-4fda-bfbc-1417a48de86f", + "x-ms-correlation-request-id": "ac405d4f-5fe3-4ae9-a09c-973554f4026d", "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233909Z:6a9ec245-0896-4fda-bfbc-1417a48de86f", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T115652Z:ac405d4f-5fe3-4ae9-a09c-973554f4026d", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1720,17 +1549,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1744,29 +1573,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:08 GMT", + "Date": "Wed, 12 Oct 2022 11:56:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9ae25340b353525bf017e4bcb8085335-44f9140066e75755-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-41123b8ce53f6e922c40a21e099c732f-5bb305063bd30f05-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": "9faa0b00-54f6-4b65-8f48-ad26d6719d3c", + "x-ms-correlation-request-id": "dc4918b1-a17a-4950-9819-c5612cf6bb77", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233909Z:9faa0b00-54f6-4b65-8f48-ad26d6719d3c", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221012T115652Z:dc4918b1-a17a-4950-9819-c5612cf6bb77", + "x-request-time": "0.084" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1774,15 +1601,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:09 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1791,9 +1618,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:39:08 GMT", - "ETag": "\u00220x8DAA269E17FB528\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:28:06 GMT", + "Date": "Wed, 12 Oct 2022 11:56:52 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1802,32 +1629,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:28:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "0ab9d77d-4e9d-4503-8e56-848509416826", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1f263e5d-effd-4228-b604-dc0d4c3fca59", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:09 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:56:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:08 GMT", + "Date": "Wed, 12 Oct 2022 11:56:52 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1835,12 +1662,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1848,7 +1675,7 @@ "Connection": "keep-alive", "Content-Length": "4050", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1915,7 +1742,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ed65c850-2ea9-4568-bdeb-6203dae78299" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b33a467-d9cc-4ff0-b771-d1380e98b776" }, "score_job": { "resources": null, @@ -1945,7 +1772,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/83c6608e-e1ce-4581-880e-04bade69ffdd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5079f526-3b15-4338-9e15-3012b3ab400d" }, "evaluate_job": { "resources": null, @@ -1971,7 +1798,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c3403657-a88d-4f44-9312-ee04c7b5982e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/65132982-87ae-40cf-bf3d-e63d5bfccfa6" } }, "outputs": { @@ -1991,22 +1818,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7310", + "Content-Length": "7355", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:17 GMT", + "Date": "Wed, 12 Oct 2022 11:57:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0c0059602e66634bad129b24aed42163-7c27d730b6e4dbba-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-06e6c4563da16175eac9f19b1cbbaed8-fbf47dbd84060b68-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed9069cb-af3f-42e7-b902-27c55a9f49ec", + "x-ms-correlation-request-id": "e4d48e4d-a6da-41d5-a195-1f2c34b2108e", "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233917Z:ed9069cb-af3f-42e7-b902-27c55a9f49ec", - "x-request-time": "6.400" + "x-ms-routing-request-id": "JAPANEAST:20221012T115702Z:e4d48e4d-a6da-41d5-a195-1f2c34b2108e", + "x-request-time": "5.399" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2037,7 +1864,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -2045,7 +1873,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -2093,7 +1922,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ed65c850-2ea9-4568-bdeb-6203dae78299" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b33a467-d9cc-4ff0-b771-d1380e98b776" }, "score_job": { "resources": null, @@ -2123,7 +1952,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/83c6608e-e1ce-4581-880e-04bade69ffdd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5079f526-3b15-4338-9e15-3012b3ab400d" }, "evaluate_job": { "resources": null, @@ -2149,7 +1978,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c3403657-a88d-4f44-9312-ee04c7b5982e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/65132982-87ae-40cf-bf3d-e63d5bfccfa6" } }, "inputs": { @@ -2192,8 +2021,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:39:16.7805301\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:57:01.610959\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json index 43c36b66aff0b..b33f3e2ce5138 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json @@ -7,1268 +7,198 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1056", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8d2f616-e5bb-4ff1-9b4d-11d8be9c389c", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTUS2:20220929T233919Z:f8d2f616-e5bb-4ff1-9b4d-11d8be9c389c", - "x-request-time": "0.348" - }, - "ResponseBody": { - "error": { - "code": "UserError", - "message": "Not found component train.", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "6374102dfb778b7f7640ed9c1af38a21", - "request": "7ad119c8b1972133" - } - } - }, - { - "type": "Environment", - "info": { - "value": "master" - } - }, - { - "type": "Location", - "info": { - "value": "westus2" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-29T23:39:19.7501439\u002B00:00" - } - }, - { - "type": "InnerError", - "info": { - "value": { - "code": "NotFound", - "innerError": { - "code": "ComponentNotFound", - "innerError": null - } - } - } - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:39:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-1cc407161efa3795cd9b60faf492a87d-3af6c7f3b5f4c894-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": "1b3fe270-fe06-4dcb-83c0-420d019c50ea", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233919Z:1b3fe270-fe06-4dcb-83c0-420d019c50ea", - "x-request-time": "0.092" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", - "name": "workspaceblobstore", - "type": "Microsoft.MachineLearningServices/workspaces/datastores", - "properties": { - "description": null, - "tags": null, - "properties": null, - "isDefault": true, - "credentials": { - "credentialsType": "AccountKey" - }, - "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", - "endpoint": "core.windows.net", - "protocol": "https", - "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" - }, - "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", - "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", - "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "lastModifiedByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:39:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f65ebdb6bec57b77d20aa6f1c6d391a7-a0127a494119c770-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": "6f4375ec-d0ed-4eea-8698-131b92ad6f5a", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233920Z:6f4375ec-d0ed-4eea-8698-131b92ad6f5a", - "x-request-time": "0.130" - }, - "ResponseBody": { - "secretsType": "AccountKey", - "key": "dGhpcyBpcyBmYWtlIGtleQ==" - } - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:20 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "1498", - "Content-MD5": "bknQRwZOwpy5fofohDUViQ==", - "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:39:19 GMT", - "ETag": "\u00220x8DAA273C36859FA\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", - "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:38:50 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "308d95ac-a48a-4c21-b9ea-5dcd10d2091b", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:20 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:19 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "298", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": { - "hash_sha256": "0000000000000", - "hash_version": "0000000000000" - }, - "isAnonymous": true, - "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-bf3816a51571e81c1b9d678c6a48b599-b28db400fe437283-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": "ee73db32-91bc-4941-9f23-0d523fa4e457", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233920Z:ee73db32-91bc-4941-9f23-0d523fa4e457", - "x-request-time": "0.199" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", - "name": "1", - "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", - "properties": { - "description": null, - "tags": {}, - "properties": { - "hash_sha256": "0000000000000", - "hash_version": "0000000000000" - }, - "isArchived": false, - "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" - }, - "systemData": { - "createdAt": "2022-09-29T23:38:51.8832274\u002B00:00", - "createdBy": "Aditi Singhal", - "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:20.6187052\u002B00:00", - "lastModifiedBy": "Aditi Singhal", - "lastModifiedByType": "User" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1043", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": {}, - "tags": {}, - "isAnonymous": false, - "isArchived": false, - "componentSpec": { - "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", - "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", - "name": "train", - "tags": {}, - "version": "31", - "display_name": "Train", - "is_deterministic": true, - "inputs": { - "training_data": { - "type": "uri_folder" - }, - "max_epocs": { - "type": "integer" - }, - "learning_rate": { - "type": "number", - "default": "0.01" - }, - "learning_rate_schedule": { - "type": "string", - "default": "time-based" - } - }, - "outputs": { - "model_output": { - "type": "uri_folder" - } - }, - "type": "command", - "_source": "YAML.COMPONENT" - } - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "2154", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:24 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31?api-version=2022-05-01", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3e8159c26fea1b5be7789c469d9eaac2-2d87446c05c24a86-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8935caf5-a03f-4bf2-8307-3c35ef211d1c", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233925Z:8935caf5-a03f-4bf2-8307-3c35ef211d1c", - "x-request-time": "4.273" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31", - "name": "31", - "type": "Microsoft.MachineLearningServices/workspaces/components/versions", - "properties": { - "description": null, - "tags": {}, - "properties": {}, - "isArchived": false, - "isAnonymous": false, - "componentSpec": { - "name": "train", - "version": "31", - "display_name": "Train", - "is_deterministic": "True", - "type": "command", - "inputs": { - "training_data": { - "type": "uri_folder", - "optional": "False" - }, - "max_epocs": { - "type": "integer", - "optional": "False" - }, - "learning_rate": { - "type": "number", - "optional": "False", - "default": "0.01" - }, - "learning_rate_schedule": { - "type": "string", - "optional": "False", - "default": "time-based" - } - }, - "outputs": { - "model_output": { - "type": "uri_folder" - } - }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", - "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", - "resources": { - "instance_count": "1" - }, - "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" - } - }, - "systemData": { - "createdAt": "2022-09-29T23:39:23.5816905\u002B00:00", - "createdBy": "Aditi Singhal", - "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:24.6229742\u002B00:00", - "lastModifiedBy": "Aditi Singhal", - "lastModifiedByType": "User" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1055", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8e9f9e5-ed99-4c18-a625-0f59b5ce214e", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTUS2:20220929T233925Z:b8e9f9e5-ed99-4c18-a625-0f59b5ce214e", - "x-request-time": "0.160" - }, - "ResponseBody": { - "error": { - "code": "UserError", - "message": "Not found component score.", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "a085c13a30f44c66ec371412096d2edc", - "request": "77a9661556d430d4" - } - } - }, - { - "type": "Environment", - "info": { - "value": "master" - } - }, - { - "type": "Location", - "info": { - "value": "westus2" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-29T23:39:25.396679\u002B00:00" - } - }, - { - "type": "InnerError", - "info": { - "value": { - "code": "NotFound", - "innerError": { - "code": "ComponentNotFound", - "innerError": null - } - } - } - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:39:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-79d5c1aac86119aa9b93d136bbf8bc2f-dd6ddff1bc377e2a-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": "fead3c9e-aa74-4758-8f03-23ecc2e2c44d", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233925Z:fead3c9e-aa74-4758-8f03-23ecc2e2c44d", - "x-request-time": "0.086" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", - "name": "workspaceblobstore", - "type": "Microsoft.MachineLearningServices/workspaces/datastores", - "properties": { - "description": null, - "tags": null, - "properties": null, - "isDefault": true, - "credentials": { - "credentialsType": "AccountKey" - }, - "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", - "endpoint": "core.windows.net", - "protocol": "https", - "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" - }, - "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", - "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", - "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "lastModifiedByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:39:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-92fb6827eb99ae7b7befb2521640716a-7e2bb870c4285c71-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": "7fc4c5bb-37c9-418b-ab48-d5b96ea7ea73", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233925Z:7fc4c5bb-37c9-418b-ab48-d5b96ea7ea73", - "x-request-time": "0.245" - }, - "ResponseBody": { - "secretsType": "AccountKey", - "key": "dGhpcyBpcyBmYWtlIGtleQ==" - } - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "939", - "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", - "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:39:25 GMT", - "ETag": "\u00220x8DAA273C778B7D2\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:38:57 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", - "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:38:57 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "605a9aee-c119-4ee5-9b78-b0a6d1e612f5", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:26 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "298", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": { - "hash_sha256": "0000000000000", - "hash_version": "0000000000000" - }, - "isAnonymous": true, - "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-dfc96a5bf27b8e1136b86453c641bb58-7fed5c7fb9bc7469-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": "cdf676bb-f68d-478c-81b2-0eb6a71f920a", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233926Z:cdf676bb-f68d-478c-81b2-0eb6a71f920a", - "x-request-time": "0.205" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", - "name": "1", - "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", - "properties": { - "description": null, - "tags": {}, - "properties": { - "hash_sha256": "0000000000000", - "hash_version": "0000000000000" - }, - "isArchived": false, - "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" - }, - "systemData": { - "createdAt": "2022-09-29T23:38:58.8206619\u002B00:00", - "createdBy": "Aditi Singhal", - "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:26.3529949\u002B00:00", - "lastModifiedBy": "Aditi Singhal", - "lastModifiedByType": "User" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "811", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": {}, - "tags": {}, - "isAnonymous": false, - "isArchived": false, - "componentSpec": { - "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", - "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", - "name": "score", - "tags": {}, - "version": "31", - "display_name": "Score", - "is_deterministic": true, - "inputs": { - "model_input": { - "type": "uri_folder" - }, - "test_data": { - "type": "uri_folder" - } - }, - "outputs": { - "score_output": { - "type": "uri_folder" - } - }, - "type": "command", - "_source": "YAML.COMPONENT" - } - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1784", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:30 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-5623f01a6ce1b285452601b42aa0aea4-7ea80f90714c4056-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16711339-0875-4f7c-8d61-ca7f1b8e5d65", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233930Z:16711339-0875-4f7c-8d61-ca7f1b8e5d65", - "x-request-time": "3.874" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31", - "name": "31", - "type": "Microsoft.MachineLearningServices/workspaces/components/versions", - "properties": { - "description": null, - "tags": {}, - "properties": {}, - "isArchived": false, - "isAnonymous": false, - "componentSpec": { - "name": "score", - "version": "31", - "display_name": "Score", - "is_deterministic": "True", - "type": "command", - "inputs": { - "model_input": { - "type": "uri_folder", - "optional": "False" - }, - "test_data": { - "type": "uri_folder", - "optional": "False" - } - }, - "outputs": { - "score_output": { - "type": "uri_folder" - } - }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", - "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", - "resources": { - "instance_count": "1" - }, - "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" - } - }, - "systemData": { - "createdAt": "2022-09-29T23:39:29.4559258\u002B00:00", - "createdBy": "Aditi Singhal", - "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:30.1042452\u002B00:00", - "lastModifiedBy": "Aditi Singhal", - "lastModifiedByType": "User" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "1055", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc57e15b-2287-4f32-bedf-589fa8d13ea4", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTUS2:20220929T233930Z:fc57e15b-2287-4f32-bedf-589fa8d13ea4", - "x-request-time": "0.184" - }, - "ResponseBody": { - "error": { - "code": "UserError", - "message": "Not found component eval.", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "b4b098cf44c86497dc31a01bf09dbf01", - "request": "b59f0b10c97e929a" - } - } - }, - { - "type": "Environment", - "info": { - "value": "master" - } - }, - { - "type": "Location", - "info": { - "value": "westus2" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-29T23:39:30.7950123\u002B00:00" - } - }, - { - "type": "InnerError", - "info": { - "value": { - "code": "NotFound", - "innerError": { - "code": "ComponentNotFound", - "innerError": null - } - } - } - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:39:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-36ce97c7572960692926788cee154068-40eac25329056180-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": "3ca5a6cf-112f-473e-805d-5a12df07390c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233930Z:3ca5a6cf-112f-473e-805d-5a12df07390c", - "x-request-time": "0.082" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", - "name": "workspaceblobstore", - "type": "Microsoft.MachineLearningServices/workspaces/datastores", - "properties": { - "description": null, - "tags": null, - "properties": null, - "isDefault": true, - "credentials": { - "credentialsType": "AccountKey" - }, - "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", - "endpoint": "core.windows.net", - "protocol": "https", - "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" - }, - "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", - "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", - "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "lastModifiedByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "2154", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:30 GMT", + "Date": "Wed, 12 Oct 2022 11:57:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ef5f3227d5f2727df68bbfa85f0c2dcc-c64a29090cb29d60-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fc1d6f2a097f5c76385db3edc64a3a66-8c7ae87b3e211118-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": "4c4fafb0-1c81-4c87-97a2-de83169e279f", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "9f4e128e-0b67-4bef-80da-4d42eb7426d5", + "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233931Z:4c4fafb0-1c81-4c87-97a2-de83169e279f", - "x-request-time": "0.101" + "x-ms-routing-request-id": "JAPANEAST:20221012T115707Z:9f4e128e-0b67-4bef-80da-4d42eb7426d5", + "x-request-time": "0.313" }, "ResponseBody": { - "secretsType": "AccountKey", - "key": "dGhpcyBpcyBmYWtlIGtleQ==" + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31", + "name": "31", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": false, + "componentSpec": { + "name": "train", + "version": "31", + "display_name": "Train", + "is_deterministic": "True", + "type": "command", + "inputs": { + "training_data": { + "type": "uri_folder", + "optional": "False" + }, + "max_epocs": { + "type": "integer", + "optional": "False" + }, + "learning_rate": { + "type": "number", + "optional": "False", + "default": "0.01" + }, + "learning_rate_schedule": { + "type": "string", + "optional": "False", + "default": "time-based" + } + }, + "outputs": { + "model_output": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", + "resources": { + "instance_count": "1" + }, + "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", + "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" + } + }, + "systemData": { + "createdAt": "2022-10-12T11:33:48.2878027\u002B00:00", + "createdBy": "Xingzhi Zhang", + "createdByType": "User", + "lastModifiedAt": "2022-10-12T11:33:48.9129625\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", + "lastModifiedByType": "User" + } } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:31 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "795", - "Content-MD5": "Oc7zuFZ4JNgHBd/WtIjpgw==", - "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:39:30 GMT", - "ETag": "\u00220x8DAA273CAF80E34\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:03 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", - "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:39:03 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3073b5c4-877e-4e9e-ac3c-91ba028e4bc8", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:31 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:30 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1?api-version=2022-05-01", - "RequestMethod": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "297", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": { - "hash_sha256": "0000000000000", - "hash_version": "0000000000000" - }, - "isAnonymous": true, - "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" - } + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1783", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:31 GMT", + "Date": "Wed, 12 Oct 2022 11:57:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-077a56a0034d2b7112786bbf1a11f8a5-d892f1e81c6ecb3b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c66db12a2952f2dc58d4b88e9a98ad24-8d0f744d65b0127c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "827babdc-165e-4f91-9a52-5277462564e1", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "7bfdcc4f-f52d-4730-a1b1-290b61062e01", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233931Z:827babdc-165e-4f91-9a52-5277462564e1", - "x-request-time": "0.180" + "x-ms-routing-request-id": "JAPANEAST:20221012T115707Z:7bfdcc4f-f52d-4730-a1b1-290b61062e01", + "x-request-time": "0.315" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", - "name": "1", - "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31", + "name": "31", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, "tags": {}, - "properties": { - "hash_sha256": "0000000000000", - "hash_version": "0000000000000" - }, + "properties": {}, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "componentSpec": { + "name": "score", + "version": "31", + "display_name": "Score", + "is_deterministic": "True", + "type": "command", + "inputs": { + "model_input": { + "type": "uri_folder", + "optional": "False" + }, + "test_data": { + "type": "uri_folder", + "optional": "False" + } + }, + "outputs": { + "score_output": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", + "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", + "resources": { + "instance_count": "1" + }, + "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", + "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" + } }, "systemData": { - "createdAt": "2022-09-29T23:39:04.048284\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:53.8250048\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:31.7446738\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:33:54.456007\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31?api-version=2022-05-01", - "RequestMethod": "PUT", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "743", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": {}, - "tags": {}, - "isAnonymous": false, - "isArchived": false, - "componentSpec": { - "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", - "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", - "name": "eval", - "tags": {}, - "version": "31", - "display_name": "Eval", - "is_deterministic": true, - "inputs": { - "scoring_result": { - "type": "uri_folder" - } - }, - "outputs": { - "eval_output": { - "type": "uri_folder" - } - }, - "type": "command", - "_source": "YAML.COMPONENT" - } - } + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, - "StatusCode": 201, + "RequestBody": null, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1656", + "Content-Length": "1655", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:35 GMT", + "Date": "Wed, 12 Oct 2022 11:57:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-76adb7e1364503f6bd0c3bd6d1775f30-cec69fa3a0549711-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-470d4ca8b9d46dc26406558fd6d352e9-40f2072468508cb4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f9e6dda-19e4-463d-870d-6a6ab450d478", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "aed4922b-da8b-4168-ab19-dedbe4b03283", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233936Z:0f9e6dda-19e4-463d-870d-6a6ab450d478", - "x-request-time": "4.118" + "x-ms-routing-request-id": "JAPANEAST:20221012T115708Z:aed4922b-da8b-4168-ab19-dedbe4b03283", + "x-request-time": "0.350" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31", @@ -1297,7 +227,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1307,11 +237,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:34.9862108\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:59.553123\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:35.6659129\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:34:00.1983934\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1323,32 +253,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "2154", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:36 GMT", + "Date": "Wed, 12 Oct 2022 11:57:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f459bacd7c9304b9c0382bcbe0eeb152-8b0756ccba144e18-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-af55cd3f715ab1470e7af012ca01f31a-56dde2cd87534829-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "041fea3b-713e-476f-b1b7-cd6ff34d9464", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "8fefba1d-7330-40fc-8757-04468d57b108", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233936Z:041fea3b-713e-476f-b1b7-cd6ff34d9464", - "x-request-time": "0.308" + "x-ms-routing-request-id": "JAPANEAST:20221012T115709Z:8fefba1d-7330-40fc-8757-04468d57b108", + "x-request-time": "0.317" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31", @@ -1391,7 +317,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/308d95ac-a48a-4c21-b9ea-5dcd10d2091b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e9d88ff5-1ff9-499c-9d27-c81537d523f2/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1401,11 +327,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:23.5816905\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:48.2878027\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:24.6229742\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:33:48.9129625\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1417,32 +343,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1783", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:36 GMT", + "Date": "Wed, 12 Oct 2022 11:57:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a8834833e0b4371493ce36e1cf95be18-b43b66408229a81e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fc61869967816cb9d722a06d73e7dd0d-35ecccd1d9ea52c8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c978a56-e1eb-4077-8ad4-992a07e558ef", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "bb1c6507-ed0f-43b4-bf27-ebb6a3a0c362", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233936Z:6c978a56-e1eb-4077-8ad4-992a07e558ef", - "x-request-time": "0.355" + "x-ms-routing-request-id": "JAPANEAST:20221012T115710Z:bb1c6507-ed0f-43b4-bf27-ebb6a3a0c362", + "x-request-time": "0.315" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31", @@ -1475,7 +397,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/605a9aee-c119-4ee5-9b78-b0a6d1e612f5/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1485,11 +407,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:29.4559258\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:53.8250048\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:30.1042452\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:33:54.456007\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1501,32 +423,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1655", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:36 GMT", + "Date": "Wed, 12 Oct 2022 11:57:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-725e58e73b271aaf628653e8f43e80af-c304960afe322c72-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-300d849bd1092fc7a4a4a6daa3fe0f87-00cfbbef9c6592c5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bde7d11-b90d-4970-818d-e0c09fc68b39", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "f3cbddf5-9bf3-4fe6-8b28-295f0e5a7d79", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233937Z:6bde7d11-b90d-4970-818d-e0c09fc68b39", - "x-request-time": "0.359" + "x-ms-routing-request-id": "JAPANEAST:20221012T115710Z:f3cbddf5-9bf3-4fe6-8b28-295f0e5a7d79", + "x-request-time": "0.316" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31", @@ -1555,7 +473,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3073b5c4-877e-4e9e-ac3c-91ba028e4bc8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30f24341-8b88-4c02-b605-0b8fc5d4169d/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1565,11 +483,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:34.9862108\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:33:59.553123\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:35.6659129\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:34:00.1983934\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1581,32 +499,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:38 GMT", + "Date": "Wed, 12 Oct 2022 11:57:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a9e79165e0f162a5018c50e01b579d11-18a5b24cffa3ff79-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a6e11ae702f2d277c6a87b1bd19e516e-b05072ab1177daa9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43fba1f5-c4aa-4f33-bca8-68e2c8596421", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "9e36781e-9244-4d0f-a670-1a60dd7d1e25", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233938Z:43fba1f5-c4aa-4f33-bca8-68e2c8596421", - "x-request-time": "0.237" + "x-ms-routing-request-id": "JAPANEAST:20221012T115713Z:9e36781e-9244-4d0f-a670-1a60dd7d1e25", + "x-request-time": "0.243" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1615,8 +529,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -1630,36 +544,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 3, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -1676,32 +577,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:38 GMT", + "Date": "Wed, 12 Oct 2022 11:57:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b13edb2ebcd221ced6feefa5cd9b711e-48814704fc762caf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9f55a809fdac9c6dc7afce7d234be205-c63d76df18eade09-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0beefe3e-67ca-4314-96c2-846dff0eebaa", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "08e915ed-2356-4584-867c-a00c7fc72f20", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233938Z:0beefe3e-67ca-4314-96c2-846dff0eebaa", - "x-request-time": "0.118" + "x-ms-routing-request-id": "JAPANEAST:20221012T115713Z:08e915ed-2356-4584-867c-a00c7fc72f20", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1716,17 +613,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1740,29 +637,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:38 GMT", + "Date": "Wed, 12 Oct 2022 11:57:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-5a55123c5bad90a02625e48722dd8c69-e365270f7029432c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-667ac8c7563f3197a8ca203f6bf42dc6-ca7cacab3ac03269-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": "79ff2062-04d0-41e9-b0cb-a47dd7c9de27", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "3f2975e8-3e9c-46d7-bd33-c6470cb13499", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233938Z:79ff2062-04d0-41e9-b0cb-a47dd7c9de27", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T115714Z:3f2975e8-3e9c-46d7-bd33-c6470cb13499", + "x-request-time": "0.104" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1770,15 +665,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:38 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1787,9 +682,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:39:38 GMT", - "ETag": "\u00220x8DAA269E17FB528\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:28:06 GMT", + "Date": "Wed, 12 Oct 2022 11:57:14 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1798,32 +693,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:28:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "0ab9d77d-4e9d-4503-8e56-848509416826", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1f263e5d-effd-4228-b604-dc0d4c3fca59", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:38 GMT", + "Date": "Wed, 12 Oct 2022 11:57:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1831,7 +726,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -1842,32 +737,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:38 GMT", + "Date": "Wed, 12 Oct 2022 11:57:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e9ea1c46a201a57c1fa9e63ab30a6e51-675e3ea927b64a80-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d6019317b6b04072b77e4c64aac7ca00-820575f15f3d01ca-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f5b7a89-6b06-4d7a-a4b3-1a909e6273d6", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "dd9da9ab-683a-412b-871e-8811578f1a25", + "x-ms-ratelimit-remaining-subscription-reads": "11982", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233939Z:1f5b7a89-6b06-4d7a-a4b3-1a909e6273d6", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T115715Z:dd9da9ab-683a-412b-871e-8811578f1a25", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1882,17 +773,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1906,29 +797,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:39 GMT", + "Date": "Wed, 12 Oct 2022 11:57:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8370fce78bd6bf62b45ee2d8b8484c8e-f23305f693b38cb8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dba87cbb720d4d1b7a5109548b3921f9-f2d9283926c1ff8a-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": "ef461f3f-ceba-458f-b5ec-ad2c24594baa", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "443ac404-1429-44a5-a536-761942972d83", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233939Z:ef461f3f-ceba-458f-b5ec-ad2c24594baa", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T115715Z:443ac404-1429-44a5-a536-761942972d83", + "x-request-time": "0.110" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1936,15 +825,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1953,9 +842,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:39:38 GMT", - "ETag": "\u00220x8DAA269E17FB528\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:28:06 GMT", + "Date": "Wed, 12 Oct 2022 11:57:15 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1964,32 +853,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:28:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "0ab9d77d-4e9d-4503-8e56-848509416826", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1f263e5d-effd-4228-b604-dc0d4c3fca59", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:39:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:57:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:39:39 GMT", + "Date": "Wed, 12 Oct 2022 11:57:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1997,12 +886,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2010,7 +899,7 @@ "Connection": "keep-alive", "Content-Length": "3870", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2172,22 +1061,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7378", + "Content-Length": "7424", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:39:46 GMT", + "Date": "Wed, 12 Oct 2022 11:57:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-1a4c522ce8a68a99c794f983a2c97030-96337091a0a39c8f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d940a61f5eaa61e51569e7068ba34d7e-f0f7a401641cc022-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b5cd29c-b9bd-44e1-ae88-5c6f2a707147", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "e57e64cc-cc02-4128-b604-017a5b0efe7b", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T233946Z:0b5cd29c-b9bd-44e1-ae88-5c6f2a707147", - "x-request-time": "5.103" + "x-ms-routing-request-id": "JAPANEAST:20221012T115723Z:e57e64cc-cc02-4128-b604-017a5b0efe7b", + "x-request-time": "3.555" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2218,7 +1107,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -2226,7 +1116,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -2395,8 +1286,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:39:45.7597202\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:57:23.0550631\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json index 7c25a20104641..dd1b52f023540 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:43 GMT", + "Date": "Wed, 12 Oct 2022 12:01:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d0aec7aad11e5f7b60b87c5a30972d6e-b1caf4102993898b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3b51273d8d6868719772c8ffaf2efeb2-7cee4f7bbee701f2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebb8e9d5-955d-470a-bb3c-9c9b8945a48e", - "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-correlation-request-id": "6ea163cf-6b0d-4a9c-9971-4c6a6d5f74fa", + "x-ms-ratelimit-remaining-subscription-reads": "11952", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234243Z:ebb8e9d5-955d-470a-bb3c-9c9b8945a48e", - "x-request-time": "0.245" + "x-ms-routing-request-id": "JAPANEAST:20221012T120127Z:6ea163cf-6b0d-4a9c-9971-4c6a6d5f74fa", + "x-request-time": "0.236" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:44 GMT", + "Date": "Wed, 12 Oct 2022 12:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-21a9ee71b689b0e139835092bd140463-126741db7091402e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b4257ae6b165653a9ffd52caf59f76f2-cb61675cea639432-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51bd562e-39b4-4f06-afaa-ca723e8e03d0", - "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-correlation-request-id": "094c9e5d-de37-4070-9bb2-0b5c34cfa56c", + "x-ms-ratelimit-remaining-subscription-reads": "11951", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234244Z:51bd562e-39b4-4f06-afaa-ca723e8e03d0", - "x-request-time": "0.132" + "x-ms-routing-request-id": "JAPANEAST:20221012T120129Z:094c9e5d-de37-4070-9bb2-0b5c34cfa56c", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:44 GMT", + "Date": "Wed, 12 Oct 2022 12:01:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-be3d6e8b2a9a96e14e8459042af1db7e-05fb52eb57dca82e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-90fa2c15df10e3928f55d36cf90b664a-924c21fe54b958ec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b4cf9b9-6bdb-43cb-8f9c-7b7354c0c35a", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "2bf7937e-a671-44b7-b2f4-19def068091a", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234244Z:8b4cf9b9-6bdb-43cb-8f9c-7b7354c0c35a", - "x-request-time": "0.106" + "x-ms-routing-request-id": "JAPANEAST:20221012T120130Z:2bf7937e-a671-44b7-b2f4-19def068091a", + "x-request-time": "0.195" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:44 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:01:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:42:44 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "164", "Content-MD5": "JwWnNxaURgTIg9SlJe9A0A==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:42:44 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cHJpbnQoIkhlbGxvIFB5dGhvbiBXb3JsZFxuSSB0ZWxsIGEgbmV3IGpva2UgZWFjaCB0aW1lIHlvdSBydW4gbWUuIFRvZGF5J3Mgam9rZTpcbiIpDQoNCmltcG9ydCBweWpva2VzDQoNCnByaW50KHB5am9rZXMuZ2V0X2pva2UoKSkNCg0KcHJpbnQoIlxuSG93IHdhcyBpdD8/XG5cbiIpDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "JwWnNxaURgTIg9SlJe9A0A==", - "Date": "Thu, 29 Sep 2022 23:42:44 GMT", - "ETag": "\u00220x8DAA2744EE23E5B\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:42:44 GMT", + "Date": "Wed, 12 Oct 2022 12:01:30 GMT", + "ETag": "\u00220x8DAAC46416A0736\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:38:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "n7RDKqMhSbc=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:38:16 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "0ff14f83-3e28-44fe-988e-90244bdecbf8", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:44 GMT", - "x-ms-meta-name": "84904053-18d2-466d-bc32-18e2b3168c96", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:01:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:42:44 GMT", - "ETag": "\u00220x8DAA2744EEB3DC3\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:42:45 GMT", + "Date": "Wed, 12 Oct 2022 12:01:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/84904053-18d2-466d-bc32-18e2b3168c96/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ff14f83-3e28-44fe-988e-90244bdecbf8/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -295,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -305,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:45 GMT", + "Date": "Wed, 12 Oct 2022 12:01:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/84904053-18d2-466d-bc32-18e2b3168c96/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4e7c4eb75bc549fabd1c209d6879f953-73269ae3acffb72a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c8f611028e24880be413ebc5bd8b6af1-b11b81d66286ce70-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4287e1b0-1179-4639-96cc-9139e62cbe50", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "25318e82-51a7-454b-9157-23343a986be8", + "x-ms-ratelimit-remaining-subscription-writes": "1149", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234246Z:4287e1b0-1179-4639-96cc-9139e62cbe50", - "x-request-time": "0.840" + "x-ms-routing-request-id": "JAPANEAST:20221012T120131Z:25318e82-51a7-454b-9157-23343a986be8", + "x-request-time": "0.213" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/84904053-18d2-466d-bc32-18e2b3168c96/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ff14f83-3e28-44fe-988e-90244bdecbf8/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -341,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:42:45.7597843\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:38:17.7954362\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:45.7597843\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:01:31.0951283\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -362,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "267", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -374,24 +326,23 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Build-ID": "ca3", "Cache-Control": "no-cache", "Content-Length": "1138", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:57 GMT", + "Date": "Wed, 12 Oct 2022 12:01:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-11cf7558bf9192c041790dcc82752793-be4f6c560e08f57b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-009ff3362136b25b309dda26bdc68d75-46b6c8dcb8fdfff3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1030418d-c7b7-46ea-ad29-4d23b2f2b24f", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "50a1eae2-bdc6-4355-a488-b4dd5a5a5fab", + "x-ms-ratelimit-remaining-subscription-writes": "1148", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234258Z:1030418d-c7b7-46ea-ad29-4d23b2f2b24f", - "x-request-time": "11.828" + "x-ms-routing-request-id": "JAPANEAST:20221012T120133Z:50a1eae2-bdc6-4355-a488-b4dd5a5a5fab", + "x-request-time": "1.451" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065", @@ -409,11 +360,11 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-29T23:42:46.5542669\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:38:18.4603658\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:46.5542669\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:38:18.4603658\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -427,7 +378,7 @@ "Connection": "keep-alive", "Content-Length": "797", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -437,7 +388,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/84904053-18d2-466d-bc32-18e2b3168c96/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ff14f83-3e28-44fe-988e-90244bdecbf8/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065", "name": "azureml_anonymous", "tags": {}, @@ -456,24 +407,24 @@ "Cache-Control": "no-cache", "Content-Length": "1615", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:04 GMT", + "Date": "Wed, 12 Oct 2022 12:01:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d62e36b6491ec2d7b8ca19cbbb686594-babef710664e5be3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0d5b3281fd8d0ccc8cb4bee9d479d6a3-59a5fad6b7325b4d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "727b94a8-a8be-40ce-a832-31eeed9c9f71", - "x-ms-ratelimit-remaining-subscription-writes": "1140", + "x-ms-correlation-request-id": "f391d904-ad4f-419c-8ace-a4725630bbb2", + "x-ms-ratelimit-remaining-subscription-writes": "1147", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234304Z:727b94a8-a8be-40ce-a832-31eeed9c9f71", - "x-request-time": "6.214" + "x-ms-routing-request-id": "JAPANEAST:20221012T120134Z:f391d904-ad4f-419c-8ace-a4725630bbb2", + "x-request-time": "0.411" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/012d2139-04b0-446e-b259-f0aa1b25d5a6", - "name": "012d2139-04b0-446e-b259-f0aa1b25d5a6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/29775847-906c-49bd-bfb6-86c0d18f6080", + "name": "29775847-906c-49bd-bfb6-86c0d18f6080", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -483,11 +434,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "012d2139-04b0-446e-b259-f0aa1b25d5a6", + "version": "29775847-906c-49bd-bfb6-86c0d18f6080", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/84904053-18d2-466d-bc32-18e2b3168c96/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ff14f83-3e28-44fe-988e-90244bdecbf8/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065", "resources": { "instance_count": "1" @@ -497,17 +448,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:43:03.9406196\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:38:31.2433092\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:03.9406196\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:38:31.7515083\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -515,7 +466,7 @@ "Connection": "keep-alive", "Content-Length": "896", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -541,7 +492,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/012d2139-04b0-446e-b259-f0aa1b25d5a6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/29775847-906c-49bd-bfb6-86c0d18f6080" } }, "outputs": {}, @@ -553,22 +504,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2761", + "Content-Length": "2807", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:09 GMT", + "Date": "Wed, 12 Oct 2022 12:01:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fbbc22dd20cd2e7766719a00f997cb09-258a962902ebd2be-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5b3626e3fc13e64def3b4fb7d0460a94-b5cd8d29e7ebceba-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "140b0f37-5779-40d3-8647-ffda74831857", - "x-ms-ratelimit-remaining-subscription-writes": "1139", + "x-ms-correlation-request-id": "acfc6e03-7e9d-4906-ad97-7c64b73d91e1", + "x-ms-ratelimit-remaining-subscription-writes": "1146", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234309Z:140b0f37-5779-40d3-8647-ffda74831857", - "x-request-time": "3.492" + "x-ms-routing-request-id": "JAPANEAST:20221012T120141Z:acfc6e03-7e9d-4906-ad97-7c64b73d91e1", + "x-request-time": "2.831" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -598,7 +549,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -606,7 +558,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -632,7 +585,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/012d2139-04b0-446e-b259-f0aa1b25d5a6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/29775847-906c-49bd-bfb6-86c0d18f6080" } }, "inputs": {}, @@ -640,8 +593,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:43:09.0273746\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:01:40.4795733\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json index 1ba884c8be3d4..5019b8e647c88 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:13 GMT", + "Date": "Wed, 12 Oct 2022 12:00:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c9f63325ee0e606cdb39cde9adf6518b-c05af02386219208-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9a1a587b350f48a3b59719e9076107b9-be65f9dce88d9478-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5272a56-42a6-424d-af1c-ea093180193c", - "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-correlation-request-id": "b034e88f-9480-4f53-8f2f-99d75b3ae07c", + "x-ms-ratelimit-remaining-subscription-reads": "11956", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234213Z:f5272a56-42a6-424d-af1c-ea093180193c", - "x-request-time": "0.216" + "x-ms-routing-request-id": "JAPANEAST:20221012T120046Z:b034e88f-9480-4f53-8f2f-99d75b3ae07c", + "x-request-time": "0.233" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:14 GMT", + "Date": "Wed, 12 Oct 2022 12:00:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2355c3697996ca8c8a119c728a82b2a6-c5b510366be009ec-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-74ae6680534efa0b0c2b3585cc51d7bf-6df9f077f75a756f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e30e3444-fa58-4c8c-bf16-2b864931c3d2", - "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-correlation-request-id": "55186638-f538-4459-974a-78b3483e983e", + "x-ms-ratelimit-remaining-subscription-reads": "11955", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234214Z:e30e3444-fa58-4c8c-bf16-2b864931c3d2", - "x-request-time": "0.099" + "x-ms-routing-request-id": "JAPANEAST:20221012T120049Z:55186638-f538-4459-974a-78b3483e983e", + "x-request-time": "0.101" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:14 GMT", + "Date": "Wed, 12 Oct 2022 12:00:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2536f857adfb61b8cea49f99825306e0-463c2e3e9fc093b7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ae2f01a1b3b11fa53c3097c7d959c4ec-bb3980f35c133a3b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6c19228-ff70-4a64-958d-2efe1664df1a", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "4cb70d8d-1074-4599-906c-7b235398cfa1", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234214Z:a6c19228-ff70-4a64-958d-2efe1664df1a", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221012T120049Z:4cb70d8d-1074-4599-906c-7b235398cfa1", + "x-request-time": "0.084" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:14 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:00:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "29", "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:42:14 GMT", - "ETag": "\u00220x8DAA273E6B524F7\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:50 GMT", + "Date": "Wed, 12 Oct 2022 12:00:49 GMT", + "ETag": "\u00220x8DA9D48FCB3C574\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:50:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:39:50 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:50:02 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e7f56006-5122-4354-90d2-1b4a05f248b7", + "x-ms-meta-name": "72ed944a-4d68-4730-aa2d-a3747ae1d41e", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:14 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:00:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:42:14 GMT", + "Date": "Wed, 12 Oct 2022 12:00:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "818", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:15 GMT", + "Date": "Wed, 12 Oct 2022 12:00:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3d3e5555b0d04eb134c8872f0a07677f-2b3bfd70a052f009-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5509cd22b0694d1177d2955b8c57dfab-3d9168b6ce6e7a50-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b81ea7b5-574b-4900-aa4e-322651d32294", - "x-ms-ratelimit-remaining-subscription-writes": "1149", + "x-ms-correlation-request-id": "ea258371-b334-4814-8847-227d3a5178df", + "x-ms-ratelimit-remaining-subscription-writes": "1156", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234215Z:b81ea7b5-574b-4900-aa4e-322651d32294", - "x-request-time": "0.181" + "x-ms-routing-request-id": "JAPANEAST:20221012T120050Z:ea258371-b334-4814-8847-227d3a5178df", + "x-request-time": "0.203" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:39:50.749915\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:50:04.0825375\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:15.2613113\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:00:50.5079079\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "87", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -355,20 +328,20 @@ "Cache-Control": "no-cache", "Content-Length": "872", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:16 GMT", + "Date": "Wed, 12 Oct 2022 12:00:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7f987e762855e541d1dbb7ab82d9dd64-c751e431a94043e4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-da2f18d9f57cf09ce684769193f3b343-004894d917d7034b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "107ae85f-ab98-4fbc-b015-7a5cd7ecf910", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "dd272335-5f8a-4bb2-b0a8-6b5f36e67ef6", + "x-ms-ratelimit-remaining-subscription-writes": "1155", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234217Z:107ae85f-ab98-4fbc-b015-7a5cd7ecf910", - "x-request-time": "1.303" + "x-ms-routing-request-id": "JAPANEAST:20221012T120053Z:dd272335-5f8a-4bb2-b0a8-6b5f36e67ef6", + "x-request-time": "2.129" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff", @@ -386,11 +359,11 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-29T23:42:15.7862466\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:37:42.2164477\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:15.7862466\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:37:42.2164477\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -404,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "797", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -414,7 +387,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff", "name": "azureml_anonymous", "tags": {}, @@ -431,26 +404,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1615", + "Content-Length": "1614", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:18 GMT", + "Date": "Wed, 12 Oct 2022 12:00:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e90bc48bd3307f090dd63896701bed9d-79cb458f55bb6672-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c3b2baa63da0a3a3bf04298ab0f881ae-dd5a7d602ba4073f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ab97686-286b-4266-98e5-e7d684948010", - "x-ms-ratelimit-remaining-subscription-writes": "1147", + "x-ms-correlation-request-id": "ee098022-47e5-4b0a-b4f7-e6f1b54d3b31", + "x-ms-ratelimit-remaining-subscription-writes": "1154", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234218Z:7ab97686-286b-4266-98e5-e7d684948010", - "x-request-time": "1.292" + "x-ms-routing-request-id": "JAPANEAST:20221012T120054Z:ee098022-47e5-4b0a-b4f7-e6f1b54d3b31", + "x-request-time": "0.459" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a42681d6-0b11-44db-89d9-ff6d61a7ffc7", - "name": "a42681d6-0b11-44db-89d9-ff6d61a7ffc7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f751db64-9db1-43d1-af01-bd78ae87c1d4", + "name": "f751db64-9db1-43d1-af01-bd78ae87c1d4", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -460,11 +433,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a42681d6-0b11-44db-89d9-ff6d61a7ffc7", + "version": "f751db64-9db1-43d1-af01-bd78ae87c1d4", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff", "resources": { "instance_count": "1" @@ -474,17 +447,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:42:18.0078493\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:37:44.5995255\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:18.0078493\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:37:45.077181\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -492,7 +465,7 @@ "Connection": "keep-alive", "Content-Length": "905", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -518,7 +491,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a42681d6-0b11-44db-89d9-ff6d61a7ffc7" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f751db64-9db1-43d1-af01-bd78ae87c1d4" } }, "outputs": {}, @@ -530,22 +503,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2770", + "Content-Length": "2816", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:23 GMT", + "Date": "Wed, 12 Oct 2022 12:01:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-de5ca33b8fe1128b98bf396b14d2ae83-71769e1526c26ea7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-99ba6953b59501d37231001808f0ee08-25434bc4ed676a2e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c54d6ab8-0ac4-4347-b122-bec625afc0be", - "x-ms-ratelimit-remaining-subscription-writes": "1146", + "x-ms-correlation-request-id": "01b393e3-58c9-467f-991e-0d67e794ea7a", + "x-ms-ratelimit-remaining-subscription-writes": "1153", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234223Z:c54d6ab8-0ac4-4347-b122-bec625afc0be", - "x-request-time": "2.819" + "x-ms-routing-request-id": "JAPANEAST:20221012T120101Z:01b393e3-58c9-467f-991e-0d67e794ea7a", + "x-request-time": "2.846" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -575,7 +548,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -583,7 +557,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -609,7 +584,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a42681d6-0b11-44db-89d9-ff6d61a7ffc7" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f751db64-9db1-43d1-af01-bd78ae87c1d4" } }, "inputs": {}, @@ -617,8 +592,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:42:22.7724883\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:01:00.5212437\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json index 6536f18466404..bd3f1abeae8bb 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:25 GMT", + "Date": "Wed, 12 Oct 2022 12:01:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e3deb4d9ef9871b81cbbf286c3224499-3b2e3d0307cad924-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b494ef352967e31a7df56911b1d6fe89-ed0459989817b5ee-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "938cd319-1635-4a2d-a2ec-631edcb1df98", - "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-correlation-request-id": "3779f565-ca08-4445-a8a3-377b8780cb3b", + "x-ms-ratelimit-remaining-subscription-reads": "11954", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234225Z:938cd319-1635-4a2d-a2ec-631edcb1df98", - "x-request-time": "0.226" + "x-ms-routing-request-id": "JAPANEAST:20221012T120106Z:3779f565-ca08-4445-a8a3-377b8780cb3b", + "x-request-time": "0.230" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:25 GMT", + "Date": "Wed, 12 Oct 2022 12:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d544cd189bbb0a68b7614ff6cff0b3b3-cfe61d14a501b79a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e034ffb310475045b20cbd820c68e38c-708ab3f0b6ea2c8d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07c52b5a-2e1d-46b7-9e78-2e460c7c4773", - "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-correlation-request-id": "a1121ef4-3efa-4dcf-afb4-6b5ef64146e7", + "x-ms-ratelimit-remaining-subscription-reads": "11953", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234226Z:07c52b5a-2e1d-46b7-9e78-2e460c7c4773", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221012T120108Z:a1121ef4-3efa-4dcf-afb4-6b5ef64146e7", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:26 GMT", + "Date": "Wed, 12 Oct 2022 12:01:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e3f26c5d30e10ec011e3559dab87a1a2-97a8d09621878038-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d7606e8e390c030e5e2be66ba6f6b408-a533c3a1c0a11a77-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c9c9d11-40d9-4253-8cc3-90b2e9075acc", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "ea424387-e0ce-4345-b357-08ad4448541b", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234226Z:5c9c9d11-40d9-4253-8cc3-90b2e9075acc", - "x-request-time": "0.085" + "x-ms-routing-request-id": "JAPANEAST:20221012T120109Z:ea424387-e0ce-4345-b357-08ad4448541b", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:01:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "29", "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:42:26 GMT", - "ETag": "\u00220x8DAA273E6B524F7\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:39:50 GMT", + "Date": "Wed, 12 Oct 2022 12:01:09 GMT", + "ETag": "\u00220x8DA9D48FCB3C574\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:50:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:39:50 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:50:02 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e7f56006-5122-4354-90d2-1b4a05f248b7", + "x-ms-meta-name": "72ed944a-4d68-4730-aa2d-a3747ae1d41e", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:01:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:42:26 GMT", + "Date": "Wed, 12 Oct 2022 12:01:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "818", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:27 GMT", + "Date": "Wed, 12 Oct 2022 12:01:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f2df2f57255388935653c901704eba2f-aa4dbefdfd42fdfa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a2164a695d7c5d5b8525f97313cadb40-0ab8d4f3cbfbc759-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a73aebc-e4e2-4465-a585-5b0f0b31eaa1", - "x-ms-ratelimit-remaining-subscription-writes": "1145", + "x-ms-correlation-request-id": "36f99ef5-e683-425a-8e82-24aa86cf1fae", + "x-ms-ratelimit-remaining-subscription-writes": "1152", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234227Z:7a73aebc-e4e2-4465-a585-5b0f0b31eaa1", - "x-request-time": "0.209" + "x-ms-routing-request-id": "JAPANEAST:20221012T120110Z:36f99ef5-e683-425a-8e82-24aa86cf1fae", + "x-request-time": "0.359" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:39:50.749915\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:50:04.0825375\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:27.1652191\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:01:10.2845288\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "629", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -351,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -370,24 +343,24 @@ "Cache-Control": "no-cache", "Content-Length": "1494", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:32 GMT", + "Date": "Wed, 12 Oct 2022 12:01:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f8f668422b12ed6141d84f11b87a7e16-e7dd1eba25374ee5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-35ec81ee014b2e95cc2cf1867ea698e4-09b0e074b5b2f202-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e7af7ee-c45c-4fed-ace6-5b30ff1cd78b", - "x-ms-ratelimit-remaining-subscription-writes": "1144", + "x-ms-correlation-request-id": "84c26f1b-a5a1-4891-b6f7-bc27263a1584", + "x-ms-ratelimit-remaining-subscription-writes": "1151", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234232Z:0e7af7ee-c45c-4fed-ace6-5b30ff1cd78b", - "x-request-time": "5.165" + "x-ms-routing-request-id": "JAPANEAST:20221012T120112Z:84c26f1b-a5a1-4891-b6f7-bc27263a1584", + "x-request-time": "1.144" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e65df99c-3207-408b-a1cd-5d4182e2dd6c", - "name": "e65df99c-3207-408b-a1cd-5d4182e2dd6c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8218810-b051-4e15-bae2-6b01204d03be", + "name": "f8218810-b051-4e15-bae2-6b01204d03be", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -397,11 +370,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "e65df99c-3207-408b-a1cd-5d4182e2dd6c", + "version": "f8218810-b051-4e15-bae2-6b01204d03be", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e7f56006-5122-4354-90d2-1b4a05f248b7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -411,17 +384,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:39:53.8568662\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:34:30.2037725\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:39:54.6668492\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:34:30.6768068\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -429,7 +402,7 @@ "Connection": "keep-alive", "Content-Length": "896", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -455,7 +428,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e65df99c-3207-408b-a1cd-5d4182e2dd6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8218810-b051-4e15-bae2-6b01204d03be" } }, "outputs": {}, @@ -467,22 +440,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2761", + "Content-Length": "2807", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:41 GMT", + "Date": "Wed, 12 Oct 2022 12:01:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2c2f134ec96c03aac57b2bed592cf3a0-21e0893836133f0f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4bc6ec6d26dc611500e139c694be9eff-9e3a19eded8db968-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3760031e-2bd3-4490-9000-1d0cb5bc0ce7", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "bff8c3c4-1dcc-4abc-9db6-70a521224395", + "x-ms-ratelimit-remaining-subscription-writes": "1150", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234241Z:3760031e-2bd3-4490-9000-1d0cb5bc0ce7", - "x-request-time": "7.196" + "x-ms-routing-request-id": "JAPANEAST:20221012T120121Z:bff8c3c4-1dcc-4abc-9db6-70a521224395", + "x-request-time": "2.834" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -512,7 +485,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -520,7 +494,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -546,7 +521,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e65df99c-3207-408b-a1cd-5d4182e2dd6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8218810-b051-4e15-bae2-6b01204d03be" } }, "inputs": {}, @@ -554,8 +529,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:42:40.7930151\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:01:20.5142736\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json index e8a97d0ad011c..0b7ef8160b4f0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:01 GMT", + "Date": "Wed, 12 Oct 2022 11:58:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7dded2e6158f1cc0d12c5501df91f09a-412afde0db708a9a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-16b5feac3ff574a16786e59cf97d01dd-4a75b612b37c8e95-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e139b93e-9f48-4880-8f49-eff516342a1c", - "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-correlation-request-id": "d27bc0ec-91c4-46b4-b86b-64c68e97de52", + "x-ms-ratelimit-remaining-subscription-reads": "11969", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234102Z:e139b93e-9f48-4880-8f49-eff516342a1c", - "x-request-time": "0.228" + "x-ms-routing-request-id": "JAPANEAST:20221012T115854Z:d27bc0ec-91c4-46b4-b86b-64c68e97de52", + "x-request-time": "0.248" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:02 GMT", + "Date": "Wed, 12 Oct 2022 11:58:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-17072732570bf84a5c5df656ba35839d-6713e8c508296bc8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-126ff0fa74b261aa4eabcb7e5b5d9c23-524a0861649b096e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6365f9ee-6731-4f38-989f-cb3dba170abe", - "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-correlation-request-id": "428428a9-45c1-45b1-a2c0-e4661ba37c95", + "x-ms-ratelimit-remaining-subscription-reads": "11968", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234103Z:6365f9ee-6731-4f38-989f-cb3dba170abe", - "x-request-time": "0.100" + "x-ms-routing-request-id": "JAPANEAST:20221012T115857Z:428428a9-45c1-45b1-a2c0-e4661ba37c95", + "x-request-time": "0.300" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:02 GMT", + "Date": "Wed, 12 Oct 2022 11:58:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7fc8da15994076812dca57e4c37c540a-61d66210403d7e97-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-701b6af969c0cb63407625a95913c1da-ea8492b1929d1102-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": "7e511abe-57f9-4b04-982e-f405f5ac306b", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "cb44eeb2-b4ba-4eb8-8ded-b64606590d0f", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234103Z:7e511abe-57f9-4b04-982e-f405f5ac306b", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T115857Z:cb44eeb2-b4ba-4eb8-8ded-b64606590d0f", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:03 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:57 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:41:02 GMT", - "ETag": "\u00220x8DAA273EE0C4530\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:02 GMT", + "Date": "Wed, 12 Oct 2022 11:58:57 GMT", + "ETag": "\u00220x8DAAC45C362FCEB\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:34:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:40:02 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:34:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2b75d87b-16ba-45fc-816d-9211e50ca66a", + "x-ms-meta-name": "03fe8359-965b-416e-bdce-be64efe42fdf", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:03 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:58 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:41:02 GMT", + "Date": "Wed, 12 Oct 2022 11:58:58 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:03 GMT", + "Date": "Wed, 12 Oct 2022 11:58:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-5af6c6a4fc68a8e083034baa7fe1bbbb-f72c6327efaaec93-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-99874022a6db3b18761bc7d5f97b9648-89a9f36e8c90efe6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a303026-0cd5-41ce-b0f0-be2b6227ede2", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "6b9579ce-c42e-4f7e-8445-6f583475ce5c", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234104Z:2a303026-0cd5-41ce-b0f0-be2b6227ede2", - "x-request-time": "0.197" + "x-ms-routing-request-id": "JAPANEAST:20221012T115858Z:6b9579ce-c42e-4f7e-8445-6f583475ce5c", + "x-request-time": "0.195" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:40:02.9187654\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:34:46.2848243\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:03.9464178\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:58:58.6500269\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "928", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -351,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -382,24 +355,24 @@ "Cache-Control": "no-cache", "Content-Length": "2006", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:06 GMT", + "Date": "Wed, 12 Oct 2022 11:59:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fa16fe0d4a30fe0945879aaed0153dae-f0c81406b3a9c678-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-467b3ae0fb74bdcfb62191642bf94210-7e594c4e18f4919d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ddf5e13-73ce-46e2-8a4e-e90bd2460a83", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "b23e4a43-ab5e-4f77-a8fc-5349bf2aaa91", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234107Z:1ddf5e13-73ce-46e2-8a4e-e90bd2460a83", - "x-request-time": "3.534" + "x-ms-routing-request-id": "JAPANEAST:20221012T115900Z:b23e4a43-ab5e-4f77-a8fc-5349bf2aaa91", + "x-request-time": "1.581" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df", - "name": "94c221ef-9264-4975-908a-a7c8402544df", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", + "name": "0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -409,7 +382,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "94c221ef-9264-4975-908a-a7c8402544df", + "version": "0da452f1-c4d1-4c8f-9b21-993e5ad89bd5", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -429,7 +402,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b75d87b-16ba-45fc-816d-9211e50ca66a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/03fe8359-965b-416e-bdce-be64efe42fdf/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -439,11 +412,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:41:07.0317521\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:36:06.5814918\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:41:07.0317521\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:36:07.0427595\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -455,32 +428,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:07 GMT", + "Date": "Wed, 12 Oct 2022 11:59:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-be2edb775e7fed8886dc29d6d540dd36-752eb0c688eeba6b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-31c5e9406ff82669c2981d6a8cd22b2e-1abf8a2bc9ea442d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8b2ddc8-693d-4292-a24e-a82c01d31cbc", - "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-correlation-request-id": "91e7348b-2d1d-4cdf-b936-b929a05c416a", + "x-ms-ratelimit-remaining-subscription-reads": "11967", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234107Z:f8b2ddc8-693d-4292-a24e-a82c01d31cbc", - "x-request-time": "0.101" + "x-ms-routing-request-id": "JAPANEAST:20221012T115901Z:91e7348b-2d1d-4cdf-b936-b929a05c416a", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -495,17 +464,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -519,29 +488,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:07 GMT", + "Date": "Wed, 12 Oct 2022 11:59:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-37ce033668b37da8cd810e0716b54805-b0a6cbc7a2887a6a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3762b5ec319e0ba7fe629c592cb0d29a-9ad2b9b52988229c-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": "c2b6b36e-15a4-4a69-9495-2a7bc8f9397a", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "576393fe-8b38-429a-b07a-09162b2a9cdc", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234108Z:c2b6b36e-15a4-4a69-9495-2a7bc8f9397a", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T115901Z:576393fe-8b38-429a-b07a-09162b2a9cdc", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -549,98 +516,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:08 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:41:07 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample.csv", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:41:08 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "Ik1vbnRoIiwgIkF2ZXJhZ2UiLCAiMjAwNSIsICIyMDA2IiwgIjIwMDciLCAiMjAwOCIsICIyMDA5IiwgIjIwMTAiLCAiMjAxMSIsICIyMDEyIiwgIjIwMTMiLCAiMjAxNCIsICIyMDE1Ig0KIk1heSIsICAwLjEsICAwLCAgMCwgMSwgMSwgMCwgMCwgMCwgMiwgMCwgIDAsICAwDQoiSnVuIiwgIDAuNSwgIDIsICAxLCAxLCAwLCAwLCAxLCAxLCAyLCAyLCAgMCwgIDENCiJKdWwiLCAgMC43LCAgNSwgIDEsIDEsIDIsIDAsIDEsIDMsIDAsIDIsICAyLCAgMQ0KIkF1ZyIsICAyLjMsICA2LCAgMywgMiwgNCwgNCwgNCwgNywgOCwgMiwgIDIsICAzDQoiU2VwIiwgIDMuNSwgIDYsICA0LCA3LCA0LCAyLCA4LCA1LCAyLCA1LCAgMiwgIDUNCiJPY3QiLCAgMi4wLCAgOCwgIDAsIDEsIDMsIDIsIDUsIDEsIDUsIDIsICAzLCAgMA0KIk5vdiIsICAwLjUsICAzLCAgMCwgMCwgMSwgMSwgMCwgMSwgMCwgMSwgIDAsICAxDQoiRGVjIiwgIDAuMCwgIDEsICAwLCAxLCAwLCAwLCAwLCAwLCAwLCAwLCAgMCwgIDENCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", - "Date": "Thu, 29 Sep 2022 23:41:07 GMT", - "ETag": "\u00220x8DAA274154B6309\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:08 GMT", + "Date": "Wed, 12 Oct 2022 11:59:01 GMT", + "ETag": "\u00220x8DA9F7304EC3057\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:57 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "LmKBlnkUM08=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:57 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "24496764-8d2c-462a-b2b4-0449135f51d7", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "087a6a33-a6c2-4301-88a7-4d13f371fac1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample.csv?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:41:08 GMT", - "x-ms-meta-name": "72cab38d-4569-46a4-a4b0-0ba143159543", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e073ba76-2f78-4900-9ea8-be1fb5baab29", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:59:02 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:41:07 GMT", - "ETag": "\u00220x8DAA2741556AC06\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:08 GMT", + "Date": "Wed, 12 Oct 2022 11:59:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -648,7 +590,7 @@ "Connection": "keep-alive", "Content-Length": "1638", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -698,7 +640,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" } }, "outputs": { @@ -715,22 +657,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3940", + "Content-Length": "3986", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:41:16 GMT", + "Date": "Wed, 12 Oct 2022 11:59:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fc38bbd19ccd59b60d52f627a6f5cd4e-c2be70d5b71a9ab8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ece5dbc0d7bca88bbc775495e1b501ad-b508a9a4991be270-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58554466-f369-48c0-94de-a9652d5cb0ff", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "5d795617-fb6f-4954-a2bc-cab91bcd3421", + "x-ms-ratelimit-remaining-subscription-writes": "1169", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234117Z:58554466-f369-48c0-94de-a9652d5cb0ff", - "x-request-time": "7.627" + "x-ms-routing-request-id": "JAPANEAST:20221012T115909Z:5d795617-fb6f-4954-a2bc-cab91bcd3421", + "x-request-time": "2.929" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -760,7 +702,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -768,7 +711,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -808,7 +752,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94c221ef-9264-4975-908a-a7c8402544df" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0da452f1-c4d1-4c8f-9b21-993e5ad89bd5" } }, "inputs": { @@ -835,8 +779,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:41:17.0840743\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:59:08.3833358\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json index f2dd2eb271e2b..abb46c40358b6 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:24 GMT", + "Date": "Wed, 12 Oct 2022 12:02:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c450e66d1ac1855f707af4a9559af265-06df4d8b49e6232d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-96dcc6228c0ba32ec91279a4a30bfea0-8a5eeac91a20d474-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe2baf3f-af62-4470-8d75-5c3b078aac1f", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "0001b17a-7417-4239-8aa9-4929b9d2a482", + "x-ms-ratelimit-remaining-subscription-reads": "11948", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234325Z:fe2baf3f-af62-4470-8d75-5c3b078aac1f", - "x-request-time": "0.227" + "x-ms-routing-request-id": "JAPANEAST:20221012T120203Z:0001b17a-7417-4239-8aa9-4929b9d2a482", + "x-request-time": "0.243" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:25 GMT", + "Date": "Wed, 12 Oct 2022 12:02:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f0494b5a3861768cdeb190e322f3e5b4-8b5cdc312f07dca7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c83c59a7d669e0b507b2c0f518f5107b-3130afad08c30dbd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44e8dd7f-a801-437f-bbe7-6f16cbe3f0aa", - "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-correlation-request-id": "35072989-f898-4b9b-aa3a-8ae6b9d7e8e7", + "x-ms-ratelimit-remaining-subscription-reads": "11947", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234326Z:44e8dd7f-a801-437f-bbe7-6f16cbe3f0aa", - "x-request-time": "0.107" + "x-ms-routing-request-id": "JAPANEAST:20221012T120205Z:35072989-f898-4b9b-aa3a-8ae6b9d7e8e7", + "x-request-time": "0.151" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:26 GMT", + "Date": "Wed, 12 Oct 2022 12:02:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b7520301cac3a0630c939eab0346950f-1778b4c630e9e379-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-657c423c783a73a2192d75f4efc737cb-34f995390a39baf6-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": "386f5225-7801-49c0-a5ef-5452e4f8ae46", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "4957acab-34a8-4f96-9b11-7dd31ee87678", + "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234326Z:386f5225-7801-49c0-a5ef-5452e4f8ae46", - "x-request-time": "0.111" + "x-ms-routing-request-id": "JAPANEAST:20221012T120207Z:4957acab-34a8-4f96-9b11-7dd31ee87678", + "x-request-time": "0.113" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:07 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:43:25 GMT", - "ETag": "\u00220x8DAA269B39E05D8\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:26:49 GMT", + "Date": "Wed, 12 Oct 2022 12:02:07 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:26:49 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5559a10b-f428-4259-a127-d246099b26e8", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:07 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:43:25 GMT", + "Date": "Wed, 12 Oct 2022 12:02:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "813", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:26 GMT", + "Date": "Wed, 12 Oct 2022 12:02:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2fce80c509c6c9ef6bfd70bded47534e-51f54cb895b17989-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2cf8218bbd663a68433f1adf42ec00de-d02f49b64eb1453a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfab3b8a-f555-4599-a1ac-2342f412ff9c", - "x-ms-ratelimit-remaining-subscription-writes": "1135", + "x-ms-correlation-request-id": "ec95d53d-867b-403b-9612-d47cb6802459", + "x-ms-ratelimit-remaining-subscription-writes": "1142", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234327Z:bfab3b8a-f555-4599-a1ac-2342f412ff9c", - "x-request-time": "0.176" + "x-ms-routing-request-id": "JAPANEAST:20221012T120208Z:ec95d53d-867b-403b-9612-d47cb6802459", + "x-request-time": "0.352" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-29T22:26:51.4133291\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:27.1245468\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:02:08.3143343\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "869", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -353,7 +326,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "printenv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu:15", "resources": { "instance_count": 2 @@ -380,24 +353,24 @@ "Cache-Control": "no-cache", "Content-Length": "1650", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:30 GMT", + "Date": "Wed, 12 Oct 2022 12:02:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8f820bf5e4362a45f392fc99b051ec24-54b963fc1d6dd540-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-89ccdd3ff2df840c0255197b706d3f14-3f92a6e4587d63ec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cf2d8a8-7459-477b-81cf-9f15b06dcce7", - "x-ms-ratelimit-remaining-subscription-writes": "1134", + "x-ms-correlation-request-id": "d5c053a2-6340-4be5-b093-ec7e5ed8e088", + "x-ms-ratelimit-remaining-subscription-writes": "1141", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234330Z:5cf2d8a8-7459-477b-81cf-9f15b06dcce7", - "x-request-time": "3.130" + "x-ms-routing-request-id": "JAPANEAST:20221012T120210Z:d5c053a2-6340-4be5-b093-ec7e5ed8e088", + "x-request-time": "1.148" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1c86a7db-9bbb-48fb-af30-72711d21385f", - "name": "1c86a7db-9bbb-48fb-af30-72711d21385f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa714b0a-ed6c-40e3-a485-be76e53de16e", + "name": "fa714b0a-ed6c-40e3-a485-be76e53de16e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -407,12 +380,12 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1c86a7db-9bbb-48fb-af30-72711d21385f", + "version": "fa714b0a-ed6c-40e3-a485-be76e53de16e", "display_name": "MPI-hello-world", "is_deterministic": "True", "type": "command", "description": "Show the MPI training environment", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": "2" @@ -426,17 +399,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:43:30.0475156\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:39:06.6147724\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:30.0475156\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:39:07.0542798\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -444,7 +417,7 @@ "Connection": "keep-alive", "Content-Length": "1009", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -477,7 +450,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1c86a7db-9bbb-48fb-af30-72711d21385f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa714b0a-ed6c-40e3-a485-be76e53de16e" } }, "outputs": {}, @@ -489,22 +462,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2913", + "Content-Length": "2959", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:35 GMT", + "Date": "Wed, 12 Oct 2022 12:02:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e4c67d201ca3d6282f065cc5fb5785c2-f8e0ecde3098ab40-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a2cf067716e94086f232c46938a4d262-7bf878fa4b07175e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ae69eed-fcc3-47d6-bc1e-57f93a29c921", - "x-ms-ratelimit-remaining-subscription-writes": "1133", + "x-ms-correlation-request-id": "727b75c0-7172-4f0d-936b-a9b9d9cd77b8", + "x-ms-ratelimit-remaining-subscription-writes": "1140", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234336Z:9ae69eed-fcc3-47d6-bc1e-57f93a29c921", - "x-request-time": "3.991" + "x-ms-routing-request-id": "JAPANEAST:20221012T120216Z:727b75c0-7172-4f0d-936b-a9b9d9cd77b8", + "x-request-time": "2.770" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -534,7 +507,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -542,7 +516,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -574,7 +549,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1c86a7db-9bbb-48fb-af30-72711d21385f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa714b0a-ed6c-40e3-a485-be76e53de16e" } }, "inputs": {}, @@ -582,8 +557,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:43:35.7260905\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:02:15.9915212\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json index 32a93e475becb..401c7e9d59aa9 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:11 GMT", + "Date": "Wed, 12 Oct 2022 12:04:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6c2b1192d2ab5a40cc41b0252a412712-0abc5277ff5919df-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c097c5abf522076b9d8831ed753c9d5a-e31c2a81271b0bd4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67f993b3-7709-4a19-8aed-ffd3d29e08b7", - "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-correlation-request-id": "eed8c5ea-41f4-411d-b046-cfdf31de381e", + "x-ms-ratelimit-remaining-subscription-reads": "11929", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234511Z:67f993b3-7709-4a19-8aed-ffd3d29e08b7", - "x-request-time": "0.243" + "x-ms-routing-request-id": "JAPANEAST:20221012T120407Z:eed8c5ea-41f4-411d-b046-cfdf31de381e", + "x-request-time": "0.225" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,22 +52,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:44:17.418\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:11 GMT", + "Date": "Wed, 12 Oct 2022 12:04:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b4a00071283b822845b74c0110ebb826-839b5064631fc3dd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-aad0b92f9718bdb4db6cf3f7d4e148a1-fd051cb626b35dad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6c9cbfb-e7ac-44df-8947-5caf8716f2c3", - "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-correlation-request-id": "6160794d-b2d3-442d-89cc-db2bdb2f7cf7", + "x-ms-ratelimit-remaining-subscription-reads": "11928", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234512Z:e6c9cbfb-e7ac-44df-8947-5caf8716f2c3", - "x-request-time": "0.275" + "x-ms-routing-request-id": "JAPANEAST:20221012T120408Z:6160794d-b2d3-442d-89cc-db2bdb2f7cf7", + "x-request-time": "0.230" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -123,8 +115,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -138,22 +130,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:44:17.418\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -171,32 +163,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:12 GMT", + "Date": "Wed, 12 Oct 2022 12:04:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-46a9dedb21ec3b8c910648836995c45a-6efe193c73429e3e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-873a8d2bd386f0ae41db51da1d45a4c4-85ce2af77000caec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a60112b2-0fe4-4be0-ab0f-22c6b7020f19", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "e664558e-d7f1-4ead-928a-9f8d181f9c06", + "x-ms-ratelimit-remaining-subscription-reads": "11927", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234512Z:a60112b2-0fe4-4be0-ab0f-22c6b7020f19", - "x-request-time": "0.276" + "x-ms-routing-request-id": "JAPANEAST:20221012T120408Z:e664558e-d7f1-4ead-928a-9f8d181f9c06", + "x-request-time": "0.249" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -205,8 +193,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -220,22 +208,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:44:17.418\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -253,32 +241,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:12 GMT", + "Date": "Wed, 12 Oct 2022 12:04:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fc8928be195e89f62e01db0da2950cfb-fb2203d89391d2b1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c152b801a599e5d107c6bfd43936010d-a82cf3d05c4147e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74d3b608-a9f1-4448-8bcb-f21e674abb1c", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "e82cd1f3-03ce-481d-b47e-a36fe75d3d5f", + "x-ms-ratelimit-remaining-subscription-reads": "11926", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234513Z:74d3b608-a9f1-4448-8bcb-f21e674abb1c", - "x-request-time": "0.097" + "x-ms-routing-request-id": "JAPANEAST:20221012T120411Z:e82cd1f3-03ce-481d-b47e-a36fe75d3d5f", + "x-request-time": "0.151" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -293,17 +277,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -317,29 +301,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:13 GMT", + "Date": "Wed, 12 Oct 2022 12:04:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0fa8a075b8dc50037f18605094a7b028-d81058ee0f48e054-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c7c712b412aaf00e63eeb897a68edf4a-97859724bb0fb77d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "832afc19-1214-4557-8429-f91a2bd62abf", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "c6ba969d-d4a7-4605-8c8c-2fead3820765", + "x-ms-ratelimit-remaining-subscription-writes": "1160", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234513Z:832afc19-1214-4557-8429-f91a2bd62abf", - "x-request-time": "0.103" + "x-ms-routing-request-id": "JAPANEAST:20221012T120412Z:c6ba969d-d4a7-4605-8c8c-2fead3820765", + "x-request-time": "0.122" }, "ResponseBody": { "secretsType": "AccountKey", @@ -347,15 +329,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:13 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:12 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -364,9 +346,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:45:13 GMT", - "ETag": "\u00220x8DAA272BA182BEE\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:25 GMT", + "Date": "Wed, 12 Oct 2022 12:04:12 GMT", + "ETag": "\u00220x8DA9D4A193DC816\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:58:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -375,32 +357,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:31:25 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:57:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1992c9ec-9950-4a10-b848-21eccf196b5e", + "x-ms-meta-name": "3af49689-e732-4d3f-9854-43df40223df3", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:13 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:12 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:13 GMT", + "Date": "Wed, 12 Oct 2022 12:04:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -408,12 +390,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -421,7 +403,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -431,35 +413,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "818", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:14 GMT", + "Date": "Wed, 12 Oct 2022 12:04:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ccee289b25ee36ce693b0a9f4e47f621-d49ed144e4b02159-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-70a87a0d1a07e4e06bf9bde4989eb108-b17aa14a209e7fe0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac3ccab6-58fb-42c6-8caa-9449c42f5ad4", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "9fa10c9a-bfdb-410a-8d75-1d9dd615ef4a", + "x-ms-ratelimit-remaining-subscription-writes": "1115", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234514Z:ac3ccab6-58fb-42c6-8caa-9449c42f5ad4", - "x-request-time": "0.246" + "x-ms-routing-request-id": "JAPANEAST:20221012T120413Z:9fa10c9a-bfdb-410a-8d75-1d9dd615ef4a", + "x-request-time": "0.211" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -471,14 +449,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:31:26.2712278\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:58:01.1651738\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:45:14.4713919\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:04:13.0496052\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -492,7 +470,7 @@ "Connection": "keep-alive", "Content-Length": "1202", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -526,7 +504,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -544,24 +522,24 @@ "Cache-Control": "no-cache", "Content-Length": "2209", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:17 GMT", + "Date": "Wed, 12 Oct 2022 12:04:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-522f996e299a3ef6411a6f0a99c38041-e5d9c121acee490c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7b313908462ed7afa5cc70b7624659f7-82a090b8a15fd6bc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a4cc3a2-e3df-4750-9d11-a126d1e82668", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "221f2d2a-70cf-4f55-a337-3ad3efe4f38a", + "x-ms-ratelimit-remaining-subscription-writes": "1114", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234517Z:9a4cc3a2-e3df-4750-9d11-a126d1e82668", - "x-request-time": "2.719" + "x-ms-routing-request-id": "JAPANEAST:20221012T120415Z:221f2d2a-70cf-4f55-a337-3ad3efe4f38a", + "x-request-time": "1.204" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", - "name": "a117d1fb-2606-4184-a51f-66f5509ae349", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", + "name": "b6a05c03-ad84-46ce-b326-ecc8c5d44726", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -571,7 +549,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a117d1fb-2606-4184-a51f-66f5509ae349", + "version": "b6a05c03-ad84-46ce-b326-ecc8c5d44726", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -589,7 +567,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -609,11 +587,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:31:29.8242337\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:41:10.7336842\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:31:30.3853557\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:41:11.2470066\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -625,32 +603,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:17 GMT", + "Date": "Wed, 12 Oct 2022 12:04:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9e67a4281866dc2317a9d4a1f70a3ff9-a0bfcea44ce71fa7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cf2fb1de478b715d26314e3d2c16191e-312039774fb4296f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8dcf7ea-6ec8-479a-a6df-60dbf4dc0c45", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "a98fa6e1-04e1-4c3f-873b-2ccef37cd4da", + "x-ms-ratelimit-remaining-subscription-reads": "11925", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234517Z:b8dcf7ea-6ec8-479a-a6df-60dbf4dc0c45", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221012T120415Z:a98fa6e1-04e1-4c3f-873b-2ccef37cd4da", + "x-request-time": "0.152" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -665,17 +639,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -689,29 +663,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:17 GMT", + "Date": "Wed, 12 Oct 2022 12:04:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ffebf90b6dfe08f150e1f7f7820d6739-e6549adf78c9be95-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4e9ed2ecf9b74f6b9e5e79c639175ce4-2bca3a63676e6034-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "883372a2-9e81-4e16-ac51-e17c05fe85b9", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "d082201b-e990-4af6-ba51-36ea82a6cdc2", + "x-ms-ratelimit-remaining-subscription-writes": "1159", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234518Z:883372a2-9e81-4e16-ac51-e17c05fe85b9", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221012T120416Z:d082201b-e990-4af6-ba51-36ea82a6cdc2", + "x-request-time": "0.159" }, "ResponseBody": { "secretsType": "AccountKey", @@ -719,15 +691,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:18 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -736,9 +708,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:45:17 GMT", - "ETag": "\u00220x8DAA272BA182BEE\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:25 GMT", + "Date": "Wed, 12 Oct 2022 12:04:16 GMT", + "ETag": "\u00220x8DA9D4A193DC816\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:58:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -747,32 +719,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:31:25 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:57:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1992c9ec-9950-4a10-b848-21eccf196b5e", + "x-ms-meta-name": "3af49689-e732-4d3f-9854-43df40223df3", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:18 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:17 GMT", + "Date": "Wed, 12 Oct 2022 12:04:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -780,12 +752,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -793,7 +765,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -803,35 +775,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "818", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:18 GMT", + "Date": "Wed, 12 Oct 2022 12:04:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7e4940a87dce454a0ad463304f1804a8-5b8f29dd49ac7bff-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ef63c16f4742bdf0c4b5dba7b9f89cfd-648a9b91295fe2fe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fee166c-bd2b-4000-af1f-d6006663063c", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "8924d72a-7a88-499b-8eed-92cac2dfe1b1", + "x-ms-ratelimit-remaining-subscription-writes": "1113", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234518Z:8fee166c-bd2b-4000-af1f-d6006663063c", - "x-request-time": "0.206" + "x-ms-routing-request-id": "JAPANEAST:20221012T120417Z:8924d72a-7a88-499b-8eed-92cac2dfe1b1", + "x-request-time": "0.187" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -843,14 +811,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:31:26.2712278\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:58:01.1651738\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:45:18.6298253\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:04:17.4204565\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -864,7 +832,7 @@ "Connection": "keep-alive", "Content-Length": "809", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -874,7 +842,7 @@ "isArchived": false, "componentSpec": { "command": "python convert_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -899,26 +867,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1817", + "Content-Length": "1818", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:21 GMT", + "Date": "Wed, 12 Oct 2022 12:04:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-cb2bac8a6274548e989a090ab2b4185c-07af5f4dd011531e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d47fb9ed0ca0e3bedac6e97940fc68d8-ce666a38cbd684a8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b47fdd47-6782-412e-8426-f24a05033db4", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "93012a7b-6d2b-47f5-be60-4b11018c24fb", + "x-ms-ratelimit-remaining-subscription-writes": "1112", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234521Z:b47fdd47-6782-412e-8426-f24a05033db4", - "x-request-time": "2.754" + "x-ms-routing-request-id": "JAPANEAST:20221012T120419Z:93012a7b-6d2b-47f5-be60-4b11018c24fb", + "x-request-time": "1.374" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b52df8c8-3cc4-4c59-9181-05a85c2b92fe", - "name": "b52df8c8-3cc4-4c59-9181-05a85c2b92fe", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dbec396a-6efe-4dd2-b9d8-a9f71b7b91c5", + "name": "dbec396a-6efe-4dd2-b9d8-a9f71b7b91c5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -928,7 +896,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b52df8c8-3cc4-4c59-9181-05a85c2b92fe", + "version": "dbec396a-6efe-4dd2-b9d8-a9f71b7b91c5", "display_name": "Convert_To_Mltable_File_Dataset", "is_deterministic": "True", "type": "command", @@ -943,7 +911,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -953,11 +921,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:32:29.6740155\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:41:15.5052488\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:32:30.270964\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:41:15.9999121\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -969,32 +937,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:21 GMT", + "Date": "Wed, 12 Oct 2022 12:04:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7ecd1c3a7515b49e4f7b7e0dd99f957e-b8572711a4e66b67-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-703f819ec0bb4982eac221c966297e3c-5c8f564c2fd2ad00-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc60562a-d48c-453d-a223-ee8748c506a2", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "f6afc37f-ad38-45c9-a9d7-aab101659c75", + "x-ms-ratelimit-remaining-subscription-reads": "11924", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234522Z:dc60562a-d48c-453d-a223-ee8748c506a2", - "x-request-time": "0.102" + "x-ms-routing-request-id": "JAPANEAST:20221012T120420Z:f6afc37f-ad38-45c9-a9d7-aab101659c75", + "x-request-time": "0.158" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1009,17 +973,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1033,29 +997,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:21 GMT", + "Date": "Wed, 12 Oct 2022 12:04:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ef0da0f54c5eb18542a32853e3dea2a6-b2736cb8a5f7ec3a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6aa9e429eaf793ff7c1beee3f4032557-8212d8f47f976799-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07cce4c2-d861-4a9b-907a-a52caf58426f", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "438dddb6-f11a-4a4d-9609-cd76b4f6d240", + "x-ms-ratelimit-remaining-subscription-writes": "1158", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234522Z:07cce4c2-d861-4a9b-907a-a52caf58426f", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T120420Z:438dddb6-f11a-4a4d-9609-cd76b4f6d240", + "x-request-time": "0.202" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1063,15 +1025,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:22 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1080,9 +1042,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:45:21 GMT", - "ETag": "\u00220x8DAA272BA182BEE\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:25 GMT", + "Date": "Wed, 12 Oct 2022 12:04:20 GMT", + "ETag": "\u00220x8DA9D4A193DC816\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:58:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1091,32 +1053,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:31:25 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:57:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1992c9ec-9950-4a10-b848-21eccf196b5e", + "x-ms-meta-name": "3af49689-e732-4d3f-9854-43df40223df3", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:22 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:21 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:21 GMT", + "Date": "Wed, 12 Oct 2022 12:04:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1124,12 +1086,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1137,7 +1099,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1147,35 +1109,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "818", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:22 GMT", + "Date": "Wed, 12 Oct 2022 12:04:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d5258ee3872234896ba15ed11e1b14ae-f0a95ae2f5e6f954-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2e93f78987deb15afbcbcf1600c2553b-39593c18349a7867-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "327dcd5a-f8e2-4869-a84f-20d107967525", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "7c7c5347-28e0-46d3-841e-6efa6e618d5a", + "x-ms-ratelimit-remaining-subscription-writes": "1111", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234522Z:327dcd5a-f8e2-4869-a84f-20d107967525", - "x-request-time": "0.229" + "x-ms-routing-request-id": "JAPANEAST:20221012T120421Z:7c7c5347-28e0-46d3-841e-6efa6e618d5a", + "x-request-time": "0.188" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1187,14 +1145,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:31:26.2712278\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:58:01.1651738\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:45:22.8387374\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:04:21.6302387\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1208,7 +1166,7 @@ "Connection": "keep-alive", "Content-Length": "1202", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1242,7 +1200,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -1260,24 +1218,24 @@ "Cache-Control": "no-cache", "Content-Length": "2209", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:25 GMT", + "Date": "Wed, 12 Oct 2022 12:04:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e020b4504ddd0f0b445644b62d2af489-a60dc2a04e3cd1ca-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c79aeb56f010db4e35002227eaca2d73-46de0499b59d968c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2526a1d0-8ce2-48ba-9b18-a2a723a5e72c", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "a0a6d35a-b95b-4ce9-ad1d-0ec55fbc719d", + "x-ms-ratelimit-remaining-subscription-writes": "1110", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234526Z:2526a1d0-8ce2-48ba-9b18-a2a723a5e72c", - "x-request-time": "3.195" + "x-ms-routing-request-id": "JAPANEAST:20221012T120423Z:a0a6d35a-b95b-4ce9-ad1d-0ec55fbc719d", + "x-request-time": "1.338" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", - "name": "a117d1fb-2606-4184-a51f-66f5509ae349", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", + "name": "b6a05c03-ad84-46ce-b326-ecc8c5d44726", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1287,7 +1245,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a117d1fb-2606-4184-a51f-66f5509ae349", + "version": "b6a05c03-ad84-46ce-b326-ecc8c5d44726", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -1305,7 +1263,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -1325,11 +1283,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:31:29.8242337\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:41:10.7336842\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:31:30.3853557\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:41:11.2470066\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1341,32 +1299,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:25 GMT", + "Date": "Wed, 12 Oct 2022 12:04:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6d0dc5136172d9723336de64106e5a74-20bdaf668eed586a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5f6493867204bec53793bd581396bd56-6a18649139b9302c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5a51ac5-db06-49b0-aad3-967a78e13ff8", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "147b9cb4-daee-4d12-89c4-194bb422781c", + "x-ms-ratelimit-remaining-subscription-reads": "11923", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234526Z:a5a51ac5-db06-49b0-aad3-967a78e13ff8", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T120424Z:147b9cb4-daee-4d12-89c4-194bb422781c", + "x-request-time": "0.106" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1381,17 +1335,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1405,29 +1359,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:26 GMT", + "Date": "Wed, 12 Oct 2022 12:04:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9ff62baf51ccf92e04dc77f053e3d94a-d3ff71cc7e1ea5c5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-14e5ac1bb68023e64204a2ccdaf94dd9-5a80b2fb30fac159-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ac5185c-0bcd-4919-9490-a5cdb2cdf0bf", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "54648f7e-13bf-4c98-9dfb-802df508dbe5", + "x-ms-ratelimit-remaining-subscription-writes": "1157", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234526Z:0ac5185c-0bcd-4919-9490-a5cdb2cdf0bf", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221012T120424Z:54648f7e-13bf-4c98-9dfb-802df508dbe5", + "x-request-time": "0.125" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1435,15 +1387,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:24 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1452,9 +1404,9 @@ "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:45:25 GMT", - "ETag": "\u00220x8DAA272BD4B9081\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:31:31 GMT", + "Date": "Wed, 12 Oct 2022 12:04:24 GMT", + "ETag": "\u00220x8DA9D49DDA8E2B9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:56:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1463,32 +1415,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:31:31 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:56:19 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "776195be-0520-410c-baf6-30d470c2ba98", + "x-ms-meta-name": "6d38069b-69f7-4247-bed0-fffe996f3098", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "9e2621cd-06f1-4034-af15-7e796b2f5bb7", + "x-ms-meta-version": "315ab246-e719-41ed-9ad8-28f2f315a8e2", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:24 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:26 GMT", + "Date": "Wed, 12 Oct 2022 12:04:24 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1496,12 +1448,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1509,7 +1461,7 @@ "Connection": "keep-alive", "Content-Length": "4264", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1540,7 +1492,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -1559,7 +1511,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1587,7 +1539,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b52df8c8-3cc4-4c59-9181-05a85c2b92fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dbec396a-6efe-4dd2-b9d8-a9f71b7b91c5" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -1601,7 +1553,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -1626,7 +1578,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1646,22 +1598,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7128", + "Content-Length": "7174", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:32 GMT", + "Date": "Wed, 12 Oct 2022 12:04:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fd0e58dfff9acd6fca775f290c551ed9-6fb0244e777aa0dd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5ec3cd909fdc923d7f133c05ded04e6a-966f43d1c41ee456-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fc407fc-8a8b-4754-8a20-c8727932cc35", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "583e3b6a-87eb-478f-b725-8577a7ee9bcc", + "x-ms-ratelimit-remaining-subscription-writes": "1109", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234532Z:1fc407fc-8a8b-4754-8a20-c8727932cc35", - "x-request-time": "3.833" + "x-ms-routing-request-id": "JAPANEAST:20221012T120433Z:583e3b6a-87eb-478f-b725-8577a7ee9bcc", + "x-request-time": "3.564" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1692,7 +1644,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1700,7 +1653,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1724,7 +1678,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -1743,7 +1697,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1771,7 +1725,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b52df8c8-3cc4-4c59-9181-05a85c2b92fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dbec396a-6efe-4dd2-b9d8-a9f71b7b91c5" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -1785,7 +1739,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1992c9ec-9950-4a10-b848-21eccf196b5e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -1810,7 +1764,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a117d1fb-2606-4184-a51f-66f5509ae349", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6a05c03-ad84-46ce-b326-ecc8c5d44726", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1835,8 +1789,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:45:32.0140736\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:04:32.5483046\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json index 2e62b84ccb749..7954d7849d01c 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:51 GMT", + "Date": "Wed, 12 Oct 2022 12:02:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ff3707707bb55b2396b2c3ed71f30401-e308fdb93cc631b9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ad25a20773b97be011ef455e37170113-7423c37219ec2eb8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1605410a-c753-46b6-851e-cddcc07b6169", - "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-correlation-request-id": "6ea34e43-bb9e-41e5-a83b-332515127ccf", + "x-ms-ratelimit-remaining-subscription-reads": "11944", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234351Z:1605410a-c753-46b6-851e-cddcc07b6169", - "x-request-time": "0.246" + "x-ms-routing-request-id": "JAPANEAST:20221012T120240Z:6ea34e43-bb9e-41e5-a83b-332515127ccf", + "x-request-time": "0.221" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,31 +85,27 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:51 GMT", + "Date": "Wed, 12 Oct 2022 12:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-63d4d1bd09f8359708108dbebe917de2-8da9edbdd6286bd5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a31404ffe1f9c13899a7a1308a34822e-26dee47ba1301a0f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "252aa947-d585-4d10-96fc-ac1567217450", - "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-correlation-request-id": "d1b0ec84-daea-4a75-ac52-1ad8ad2a7c82", + "x-ms-ratelimit-remaining-subscription-reads": "11943", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234352Z:252aa947-d585-4d10-96fc-ac1567217450", + "x-ms-routing-request-id": "JAPANEAST:20221012T120243Z:d1b0ec84-daea-4a75-ac52-1ad8ad2a7c82", "x-request-time": "0.107" }, "ResponseBody": { @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:52 GMT", + "Date": "Wed, 12 Oct 2022 12:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6e4dcd82d590b2d27e30e80d1cdb3be3-968726da6445bf36-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1a328e24d3c704949349ca5bba8bbf23-7b0032d1915fb411-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": "837a275f-4d57-428a-a3b9-45ca0f2aaf51", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "dea7ed7e-38f1-4703-bacb-136cae9505a1", + "x-ms-ratelimit-remaining-subscription-writes": "1172", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234352Z:837a275f-4d57-428a-a3b9-45ca0f2aaf51", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221012T120244Z:dea7ed7e-38f1-4703-bacb-136cae9505a1", + "x-request-time": "0.417" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:52 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:44 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "4138", "Content-MD5": "0KXmFx7HK/7s4zv4\u002BZJGlg==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:43:52 GMT", - "ETag": "\u00220x8DAA271F7EAB17F\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:26:00 GMT", + "Date": "Wed, 12 Oct 2022 12:02:44 GMT", + "ETag": "\u00220x8DA9F71FBFEA6C5\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:48:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:26:00 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:48:33 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "fdc7c0a0-6db9-4fa0-b50f-bfbefe57646c", + "x-ms-meta-name": "97756168-3c33-4924-8333-21022b630383", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:52 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:44 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:43:52 GMT", + "Date": "Wed, 12 Oct 2022 12:02:44 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fdc7c0a0-6db9-4fa0-b50f-bfbefe57646c/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/prep_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "827", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:52 GMT", + "Date": "Wed, 12 Oct 2022 12:02:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b0d8a4db0b4109af4b41474e2225924a-395242b59cee9672-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a4f4257bde159fe5e3d568c6bb45081a-d1fdc43e48c95157-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3223c532-1e1f-488f-810f-b920f20a3ee8", - "x-ms-ratelimit-remaining-subscription-writes": "1129", + "x-ms-correlation-request-id": "b3ca8636-03e5-4b27-b3df-64ca40a05a0a", + "x-ms-ratelimit-remaining-subscription-writes": "1136", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234353Z:3223c532-1e1f-488f-810f-b920f20a3ee8", - "x-request-time": "0.209" + "x-ms-routing-request-id": "JAPANEAST:20221012T120245Z:b3ca8636-03e5-4b27-b3df-64ca40a05a0a", + "x-request-time": "0.206" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fdc7c0a0-6db9-4fa0-b50f-bfbefe57646c/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/prep_src" }, "systemData": { - "createdAt": "2022-09-29T23:26:00.5517037\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:48:34.8762247\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:53.2810566\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:02:45.2192455\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "765", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -351,122 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python prep.py --raw_data ${{inputs.raw_data}} --prep_data ${{outputs.prep_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fdc7c0a0-6db9-4fa0-b50f-bfbefe57646c/versions/1", - "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3", - "name": "azureml_anonymous", - "tags": {}, - "version": "000000000000000000000", - "display_name": "PrepTaxiData", - "is_deterministic": true, - "inputs": { - "raw_data": { - "type": "uri_folder" - } - }, - "outputs": { - "prep_data": { - "type": "uri_folder" - } - }, - "type": "command", - "_source": "YAML.COMPONENT" - } - } - }, - "StatusCode": 429, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Connection": "close", - "Content-Length": "1116", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:57 GMT", - "Expires": "-1", - "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-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fd87ec2-fb94-4bd1-bf12-4787fd1fae7b", - "x-ms-ratelimit-remaining-subscription-writes": "1128", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTUS2:20220929T234358Z:4fd87ec2-fb94-4bd1-bf12-4787fd1fae7b", - "x-request-time": "4.505" - }, - "ResponseBody": { - "error": { - "code": "UserError", - "message": "Received too many requests in a short amount of time. Retry again after 20 seconds.", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "90e0a5c244a07467b582d4d6c033c644", - "request": "c08680ab5cc27fd0" - } - } - }, - { - "type": "Environment", - "info": { - "value": "master" - } - }, - { - "type": "Location", - "info": { - "value": "westus2" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-29T23:43:58.0381621\u002B00:00" - } - }, - { - "type": "InnerError", - "info": { - "value": { - "code": "QuotaExceeded", - "innerError": { - "code": "TooManyRequests", - "innerError": null - } - } - } - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "765", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": {}, - "tags": {}, - "isAnonymous": true, - "isArchived": false, - "componentSpec": { - "command": "python prep.py --raw_data ${{inputs.raw_data}} --prep_data ${{outputs.prep_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fdc7c0a0-6db9-4fa0-b50f-bfbefe57646c/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3", "name": "azureml_anonymous", "tags": {}, @@ -493,24 +351,24 @@ "Cache-Control": "no-cache", "Content-Length": "1774", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:02 GMT", + "Date": "Wed, 12 Oct 2022 12:02:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8042aa8c36b3add3f653085ac946081b-cff851a297161aa9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ff83fdcff9e93b39693b21f51ce5e404-2a693cf16ac6e469-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58aa75db-8f80-4ca3-a6a6-11aeee65575b", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "b41d5d62-f9a0-4fe8-b78a-2498e3f1af6f", + "x-ms-ratelimit-remaining-subscription-writes": "1135", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234402Z:58aa75db-8f80-4ca3-a6a6-11aeee65575b", - "x-request-time": "3.020" + "x-ms-routing-request-id": "JAPANEAST:20221012T120247Z:b41d5d62-f9a0-4fe8-b78a-2498e3f1af6f", + "x-request-time": "1.235" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60386c1f-dfa6-40fe-bceb-aa565364ca75", - "name": "60386c1f-dfa6-40fe-bceb-aa565364ca75", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99db73b1-3b27-480d-90c0-c23b1f8f0561", + "name": "99db73b1-3b27-480d-90c0-c23b1f8f0561", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -520,7 +378,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "60386c1f-dfa6-40fe-bceb-aa565364ca75", + "version": "99db73b1-3b27-480d-90c0-c23b1f8f0561", "display_name": "PrepTaxiData", "is_deterministic": "True", "type": "command", @@ -535,7 +393,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fdc7c0a0-6db9-4fa0-b50f-bfbefe57646c/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -545,11 +403,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:26:03.8475934\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:57:56.5498322\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:26:04.3945673\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T02:57:57.0876961\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -561,32 +419,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:02 GMT", + "Date": "Wed, 12 Oct 2022 12:02:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-1cc2f50b31ff37d3d3ad95ffca316074-8987eef0cdf8c025-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f2c21f9c82346ddb13587f226265e0d8-de79d12379ac0d30-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "761a31e0-c1c4-4fc5-aa83-04d8bb1c1e20", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "e7b43cb0-182b-4fab-bd91-52444d9bfcfd", + "x-ms-ratelimit-remaining-subscription-reads": "11942", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234402Z:761a31e0-c1c4-4fc5-aa83-04d8bb1c1e20", - "x-request-time": "0.106" + "x-ms-routing-request-id": "JAPANEAST:20221012T120247Z:e7b43cb0-182b-4fab-bd91-52444d9bfcfd", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -601,17 +455,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -625,29 +479,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:02 GMT", + "Date": "Wed, 12 Oct 2022 12:02:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-df95620aa589a7247d2e9709ed23de34-f36c64a727bafc4f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f78795e4c3c4463ce9920a5c257a5354-e344391c200a8b82-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2779c107-47d8-443d-83d2-18538343e067", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "454daa46-6a37-420a-93e7-cebb0e926094", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234403Z:2779c107-47d8-443d-83d2-18538343e067", - "x-request-time": "0.144" + "x-ms-routing-request-id": "JAPANEAST:20221012T120248Z:454daa46-6a37-420a-93e7-cebb0e926094", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -655,15 +507,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/transform_src/transform.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/transform_src/transform.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:03 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -672,9 +524,9 @@ "Content-Length": "5512", "Content-MD5": "YTwbWiBVzF01p1o6D8iCLw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:02 GMT", - "ETag": "\u00220x8DAA271FB1A6E1E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:26:05 GMT", + "Date": "Wed, 12 Oct 2022 12:02:48 GMT", + "ETag": "\u00220x8DAABFD91DDF639\u0022", + "Last-Modified": "Wed, 12 Oct 2022 02:57:58 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -683,32 +535,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:26:05 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 02:57:58 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2a62ff28-9115-44ee-b62d-81709075e222", + "x-ms-meta-name": "315ba3f7-f3e0-4568-a61c-cf920e2e1323", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/transform_src/transform.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/transform_src/transform.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:03 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:02 GMT", + "Date": "Wed, 12 Oct 2022 12:02:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -716,12 +568,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a62ff28-9115-44ee-b62d-81709075e222/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/315ba3f7-f3e0-4568-a61c-cf920e2e1323/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -729,7 +581,7 @@ "Connection": "keep-alive", "Content-Length": "302", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -739,35 +591,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/transform_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/transform_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "832", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:03 GMT", + "Date": "Wed, 12 Oct 2022 12:02:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-cad7acf0797174177a05aabcd59903d0-fa26d690735a4e8b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-91c8c2978adbe814399329bf98f8ac07-1e291b6a988150ef-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dace5958-9529-4e9f-b8ca-ae7c74a4ea45", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "f70281b1-f2ac-4f36-b5d6-e92e3a0282bb", + "x-ms-ratelimit-remaining-subscription-writes": "1134", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234403Z:dace5958-9529-4e9f-b8ca-ae7c74a4ea45", - "x-request-time": "0.196" + "x-ms-routing-request-id": "JAPANEAST:20221012T120249Z:f70281b1-f2ac-4f36-b5d6-e92e3a0282bb", + "x-request-time": "0.207" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a62ff28-9115-44ee-b62d-81709075e222/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/315ba3f7-f3e0-4568-a61c-cf920e2e1323/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -779,14 +627,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/transform_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/transform_src" }, "systemData": { - "createdAt": "2022-09-29T23:26:05.874552\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:57:59.4662187\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:03.6104748\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:02:49.4107447\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -800,7 +648,7 @@ "Connection": "keep-alive", "Content-Length": "807", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -810,7 +658,7 @@ "isArchived": false, "componentSpec": { "command": "python transform.py --clean_data ${{inputs.clean_data}} --transformed_data ${{outputs.transformed_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a62ff28-9115-44ee-b62d-81709075e222/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/315ba3f7-f3e0-4568-a61c-cf920e2e1323/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3", "name": "azureml_anonymous", "tags": {}, @@ -837,24 +685,24 @@ "Cache-Control": "no-cache", "Content-Length": "1816", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:09 GMT", + "Date": "Wed, 12 Oct 2022 12:02:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6467e4d5055c337eb00fffa1a2864a05-d2f23d7ed64e0955-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c841b8cacc30065528ddd41f8e8dc46d-d989268c46e268d6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb639014-826a-4705-adb6-2443c076d0cf", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "4dd8ae59-5341-432c-b805-24b04edb95c6", + "x-ms-ratelimit-remaining-subscription-writes": "1133", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234409Z:eb639014-826a-4705-adb6-2443c076d0cf", - "x-request-time": "5.048" + "x-ms-routing-request-id": "JAPANEAST:20221012T120251Z:4dd8ae59-5341-432c-b805-24b04edb95c6", + "x-request-time": "1.208" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b09e8c40-ae8d-4932-a2b6-bca57e96e4cb", - "name": "b09e8c40-ae8d-4932-a2b6-bca57e96e4cb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7ff1cf23-26f2-48c7-8ca8-b6ec0d99b03b", + "name": "7ff1cf23-26f2-48c7-8ca8-b6ec0d99b03b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -864,7 +712,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b09e8c40-ae8d-4932-a2b6-bca57e96e4cb", + "version": "7ff1cf23-26f2-48c7-8ca8-b6ec0d99b03b", "display_name": "TaxiFeatureEngineering", "is_deterministic": "True", "type": "command", @@ -879,7 +727,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a62ff28-9115-44ee-b62d-81709075e222/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/315ba3f7-f3e0-4568-a61c-cf920e2e1323/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -889,11 +737,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:26:09.1284097\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:58:01.4220151\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:26:09.6783607\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T02:58:01.8905785\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -905,32 +753,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:09 GMT", + "Date": "Wed, 12 Oct 2022 12:02:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d691391c202a78b366e221a7526b29a2-9e32a7991918454a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-444eba596cf902e62a91fcdec8b0cf0b-410ebae68afc2b9e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a00e1ee-153b-467a-aebc-745e21506220", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "28cf9b3b-8cb3-41f7-a462-0f7704af1aaa", + "x-ms-ratelimit-remaining-subscription-reads": "11941", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234409Z:8a00e1ee-153b-467a-aebc-745e21506220", - "x-request-time": "0.084" + "x-ms-routing-request-id": "JAPANEAST:20221012T120251Z:28cf9b3b-8cb3-41f7-a462-0f7704af1aaa", + "x-request-time": "0.088" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -945,17 +789,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -969,29 +813,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:09 GMT", + "Date": "Wed, 12 Oct 2022 12:02:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-bc90dee69e71414a8a9984b8dd1cf6a7-73d6664a8b1a891b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dfce2144976d09ed822419be52ca4112-27b3ededd75255cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ddd5e293-193a-4e69-a398-49a9f4b0e193", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "d1cafc58-73fb-49d7-bc7f-786cc683f740", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234409Z:ddd5e293-193a-4e69-a398-49a9f4b0e193", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221012T120252Z:d1cafc58-73fb-49d7-bc7f-786cc683f740", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -999,15 +841,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:09 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1016,9 +858,9 @@ "Content-Length": "2422", "Content-MD5": "LwwtIGRB0XMBLqUtuK9UCg==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:09 GMT", - "ETag": "\u00220x8DAA271FE81AD88\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:26:11 GMT", + "Date": "Wed, 12 Oct 2022 12:02:52 GMT", + "ETag": "\u00220x8DAABFD94B711EE\u0022", + "Last-Modified": "Wed, 12 Oct 2022 02:58:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1027,32 +869,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:26:11 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 02:58:03 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "4f9d7960-fd3a-463b-b1e8-4221810b0896", + "x-ms-meta-name": "de2f38e7-fd07-42f9-aa44-d96e2e3f2ec0", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:09 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:09 GMT", + "Date": "Wed, 12 Oct 2022 12:02:52 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1060,12 +902,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4f9d7960-fd3a-463b-b1e8-4221810b0896/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/de2f38e7-fd07-42f9-aa44-d96e2e3f2ec0/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1073,7 +915,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1083,35 +925,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:10 GMT", + "Date": "Wed, 12 Oct 2022 12:02:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fe3a5d84bc52a6482c64317f1c10c3fb-9fae0b105c6f7348-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f50e1a9604a474d97808a6c219454ecd-153bd779c30f9fa7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19bd7a9f-da50-44aa-b49e-7dad669db380", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "1f3fd81d-2c89-4269-a92d-2baf906099fd", + "x-ms-ratelimit-remaining-subscription-writes": "1132", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234410Z:19bd7a9f-da50-44aa-b49e-7dad669db380", - "x-request-time": "0.199" + "x-ms-routing-request-id": "JAPANEAST:20221012T120253Z:1f3fd81d-2c89-4269-a92d-2baf906099fd", + "x-request-time": "0.186" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4f9d7960-fd3a-463b-b1e8-4221810b0896/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/de2f38e7-fd07-42f9-aa44-d96e2e3f2ec0/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1123,14 +961,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-29T23:26:11.470029\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:58:04.2744166\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:10.423136\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:02:53.2476224\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1144,7 +982,7 @@ "Connection": "keep-alive", "Content-Length": "876", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1154,7 +992,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --test_data ${{outputs.test_data}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4f9d7960-fd3a-463b-b1e8-4221810b0896/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/de2f38e7-fd07-42f9-aa44-d96e2e3f2ec0/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3", "name": "azureml_anonymous", "tags": {}, @@ -1184,24 +1022,24 @@ "Cache-Control": "no-cache", "Content-Length": "1913", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:13 GMT", + "Date": "Wed, 12 Oct 2022 12:02:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d49b61e9897582af1f77e271726f3583-a3ee15738b2c4c79-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fbf98611a7238f734972966396b9cded-525798e7726d238f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0085ba78-23e4-4572-9ad4-f7cc1573d04f", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "0f195678-77b3-4c12-b0bb-10b7cad382fc", + "x-ms-ratelimit-remaining-subscription-writes": "1131", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234413Z:0085ba78-23e4-4572-9ad4-f7cc1573d04f", - "x-request-time": "2.928" + "x-ms-routing-request-id": "JAPANEAST:20221012T120255Z:0f195678-77b3-4c12-b0bb-10b7cad382fc", + "x-request-time": "1.230" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ceedbdc-3885-44e1-8886-949f2cb98564", - "name": "4ceedbdc-3885-44e1-8886-949f2cb98564", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/76ad33d6-dfec-40db-a7a7-18301c439920", + "name": "76ad33d6-dfec-40db-a7a7-18301c439920", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1211,7 +1049,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4ceedbdc-3885-44e1-8886-949f2cb98564", + "version": "76ad33d6-dfec-40db-a7a7-18301c439920", "display_name": "TrainLinearRegressionModel", "is_deterministic": "True", "type": "command", @@ -1229,7 +1067,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4f9d7960-fd3a-463b-b1e8-4221810b0896/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/de2f38e7-fd07-42f9-aa44-d96e2e3f2ec0/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1239,11 +1077,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:26:15.6507204\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:58:06.3841987\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:26:16.2948185\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T02:58:06.9267402\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1255,31 +1093,27 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:13 GMT", + "Date": "Wed, 12 Oct 2022 12:02:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-171be98b59420efbdaf857f51dc60432-e1f05c1769f50b11-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7e1b2766e9d15050168e1f508075f543-ff9ed74a6ace55eb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acc70107-0c12-41fd-8435-335fc6d40dcf", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "a3ae239a-76e3-4ee2-9a2f-9d2f0dcd1fc3", + "x-ms-ratelimit-remaining-subscription-reads": "11940", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234414Z:acc70107-0c12-41fd-8435-335fc6d40dcf", + "x-ms-routing-request-id": "JAPANEAST:20221012T120256Z:a3ae239a-76e3-4ee2-9a2f-9d2f0dcd1fc3", "x-request-time": "0.089" }, "ResponseBody": { @@ -1295,17 +1129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1319,29 +1153,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:14 GMT", + "Date": "Wed, 12 Oct 2022 12:02:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-463e10e27700832b9b5fec13cc2b8927-efb5e5416e170d31-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5f80bcecdee5aa7892af6479fa3e3891-d4cfe925c437dc2e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3241eed6-e508-4f7a-b6a9-92436cff234a", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "b3753a64-7acb-478d-8fb7-a5685380f54d", + "x-ms-ratelimit-remaining-subscription-writes": "1169", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234414Z:3241eed6-e508-4f7a-b6a9-92436cff234a", - "x-request-time": "0.094" + "x-ms-routing-request-id": "JAPANEAST:20221012T120256Z:b3753a64-7acb-478d-8fb7-a5685380f54d", + "x-request-time": "0.113" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1349,15 +1181,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/predict_src/predict.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/predict_src/predict.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:14 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1366,9 +1198,9 @@ "Content-Length": "2430", "Content-MD5": "i0ZPoTL2iW5n0MGJfy7GWQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:13 GMT", - "ETag": "\u00220x8DAA272022ACE7C\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:26:17 GMT", + "Date": "Wed, 12 Oct 2022 12:02:56 GMT", + "ETag": "\u00220x8DAABFD981E00DC\u0022", + "Last-Modified": "Wed, 12 Oct 2022 02:58:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1377,32 +1209,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:26:17 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 02:58:09 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a5e5a40c-ef54-4de9-a499-38b60b0d6e50", + "x-ms-meta-name": "3005fe3d-854f-4af8-a9ac-86ab8f11fdca", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/predict_src/predict.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/predict_src/predict.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:14 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:13 GMT", + "Date": "Wed, 12 Oct 2022 12:02:56 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1410,12 +1242,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5e5a40c-ef54-4de9-a499-38b60b0d6e50/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3005fe3d-854f-4af8-a9ac-86ab8f11fdca/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1423,7 +1255,7 @@ "Connection": "keep-alive", "Content-Length": "300", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1433,35 +1265,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/predict_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/predict_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "830", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:14 GMT", + "Date": "Wed, 12 Oct 2022 12:02:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3c75fb03eef5801e521875ac588ea30f-058b25b9c2583e3d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b8eb069c19842aa44d13899281855a12-3caa61ed0b8a683b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd98872d-1d03-420b-a4bf-a9f36148b2ea", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "aae9bf6d-0472-4f54-965c-a505d71d5719", + "x-ms-ratelimit-remaining-subscription-writes": "1130", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234415Z:cd98872d-1d03-420b-a4bf-a9f36148b2ea", - "x-request-time": "0.188" + "x-ms-routing-request-id": "JAPANEAST:20221012T120257Z:aae9bf6d-0472-4f54-965c-a505d71d5719", + "x-request-time": "0.226" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5e5a40c-ef54-4de9-a499-38b60b0d6e50/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3005fe3d-854f-4af8-a9ac-86ab8f11fdca/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1473,14 +1301,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/predict_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/predict_src" }, "systemData": { - "createdAt": "2022-09-29T23:26:17.6295514\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:58:09.9246724\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:14.9505275\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:02:57.4542406\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1494,7 +1322,7 @@ "Connection": "keep-alive", "Content-Length": "858", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1504,7 +1332,7 @@ "isArchived": false, "componentSpec": { "command": "python predict.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --predictions ${{outputs.predictions}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5e5a40c-ef54-4de9-a499-38b60b0d6e50/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3005fe3d-854f-4af8-a9ac-86ab8f11fdca/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3", "name": "azureml_anonymous", "tags": {}, @@ -1532,26 +1360,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1926", + "Content-Length": "1925", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:17 GMT", + "Date": "Wed, 12 Oct 2022 12:02:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f59c2a8d1c9ebb9a03db2f4e733b1059-b42164f748674fc8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b8a7fdecd2a3691b5c85c01a740f85ab-958253dab98003d5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6da16ea4-de6f-4aba-8521-03454ea0c077", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "254cc3ef-541e-41d7-9306-9904a57bd9a6", + "x-ms-ratelimit-remaining-subscription-writes": "1129", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234417Z:6da16ea4-de6f-4aba-8521-03454ea0c077", - "x-request-time": "2.522" + "x-ms-routing-request-id": "JAPANEAST:20221012T120259Z:254cc3ef-541e-41d7-9306-9904a57bd9a6", + "x-request-time": "1.193" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2e82d0f-24b3-49b0-aa26-ed4c33d1528b", - "name": "f2e82d0f-24b3-49b0-aa26-ed4c33d1528b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e7af07ab-8641-4404-884f-07b0ae101ca2", + "name": "e7af07ab-8641-4404-884f-07b0ae101ca2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1561,7 +1389,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f2e82d0f-24b3-49b0-aa26-ed4c33d1528b", + "version": "e7af07ab-8641-4404-884f-07b0ae101ca2", "display_name": "PredictTaxiFares", "is_deterministic": "True", "type": "command", @@ -1580,7 +1408,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a5e5a40c-ef54-4de9-a499-38b60b0d6e50/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3005fe3d-854f-4af8-a9ac-86ab8f11fdca/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1590,11 +1418,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:26:21.2076419\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:58:11.8895645\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:26:21.7600464\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T02:58:12.380357\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1606,32 +1434,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:17 GMT", + "Date": "Wed, 12 Oct 2022 12:02:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-10d726a3e3060a3e0925c73102bbfeb9-5fc783dfa3fca2dd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f75d5e58e232ddfc61e183d8c96b6537-297d495a568a2585-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a37d91dd-5ed1-46ea-b8e5-96f7474b5d70", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "b7d4b667-1480-4971-a19e-78ee3f1b384e", + "x-ms-ratelimit-remaining-subscription-reads": "11939", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234417Z:a37d91dd-5ed1-46ea-b8e5-96f7474b5d70", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T120300Z:b7d4b667-1480-4971-a19e-78ee3f1b384e", + "x-request-time": "0.215" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1646,17 +1470,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1670,29 +1494,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:18 GMT", + "Date": "Wed, 12 Oct 2022 12:03:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6a9144c41971a983c68cb854e8f2e248-877d60c7c0f81da4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e81f97ee7cb5f5c6d72580efdb8f8481-be74706a541c014d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e6523aa-c5c9-4582-8519-2e20484bbfa6", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "8951a144-3e8e-4daf-8318-0828569790a9", + "x-ms-ratelimit-remaining-subscription-writes": "1168", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234418Z:4e6523aa-c5c9-4582-8519-2e20484bbfa6", - "x-request-time": "0.100" + "x-ms-routing-request-id": "JAPANEAST:20221012T120300Z:8951a144-3e8e-4daf-8318-0828569790a9", + "x-request-time": "0.109" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1700,15 +1522,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:18 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:00 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1717,9 +1539,9 @@ "Content-Length": "2224", "Content-MD5": "6qz6o7uq4IvX5ETlbeIXjw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:17 GMT", - "ETag": "\u00220x8DAA272054F690E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:26:22 GMT", + "Date": "Wed, 12 Oct 2022 12:03:00 GMT", + "ETag": "\u00220x8DAABFD9B429943\u0022", + "Last-Modified": "Wed, 12 Oct 2022 02:58:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1728,32 +1550,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:26:22 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 02:58:14 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3350f2e6-007c-4d7e-b609-72582726e490", + "x-ms-meta-name": "92789f04-083e-4034-b7c4-a5f1fa4d9999", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:18 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:00 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:17 GMT", + "Date": "Wed, 12 Oct 2022 12:03:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1761,12 +1583,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3350f2e6-007c-4d7e-b609-72582726e490/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92789f04-083e-4034-b7c4-a5f1fa4d9999/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1774,7 +1596,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1784,35 +1606,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:18 GMT", + "Date": "Wed, 12 Oct 2022 12:03:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-21f0e578a53dd77c8f3af49bb3a0e2be-33d7133994762df5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-35481d6474b22dcd8c6a2343011bb85c-ea6edde6afa52d2e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89d8410e-dff8-45a1-a01e-1535b46a683d", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "de67208b-4007-41ef-9bb1-c904dc8a5ddc", + "x-ms-ratelimit-remaining-subscription-writes": "1128", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234418Z:89d8410e-dff8-45a1-a01e-1535b46a683d", + "x-ms-routing-request-id": "JAPANEAST:20221012T120301Z:de67208b-4007-41ef-9bb1-c904dc8a5ddc", "x-request-time": "0.191" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3350f2e6-007c-4d7e-b609-72582726e490/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92789f04-083e-4034-b7c4-a5f1fa4d9999/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1824,14 +1642,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-29T23:26:22.872318\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:58:15.1991892\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:18.6309969\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:03:01.3948384\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1845,7 +1663,7 @@ "Connection": "keep-alive", "Content-Length": "841", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1855,7 +1673,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --predictions ${{inputs.predictions}} --model ${{inputs.model}} --score_report ${{outputs.score_report}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3350f2e6-007c-4d7e-b609-72582726e490/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92789f04-083e-4034-b7c4-a5f1fa4d9999/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3", "name": "azureml_anonymous", "tags": {}, @@ -1883,26 +1701,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1908", + "Content-Length": "1909", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:21 GMT", + "Date": "Wed, 12 Oct 2022 12:03:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e9b78f95d8d3daed5d09df4caf85a921-b34324176a014c31-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7fd2904034d684982da27c6944b0c392-12ed05eb607ef661-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec80850c-7626-4d69-82b4-2bd7ec5fc17b", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "6dc2ef47-ff82-4c67-a353-7299eee3f885", + "x-ms-ratelimit-remaining-subscription-writes": "1127", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234421Z:ec80850c-7626-4d69-82b4-2bd7ec5fc17b", - "x-request-time": "2.800" + "x-ms-routing-request-id": "JAPANEAST:20221012T120303Z:6dc2ef47-ff82-4c67-a353-7299eee3f885", + "x-request-time": "1.204" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba3d8106-0034-4aa4-9ddf-1ac244fef551", - "name": "ba3d8106-0034-4aa4-9ddf-1ac244fef551", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a866822e-c9b0-4a96-acfa-7527d66f2dd1", + "name": "a866822e-c9b0-4a96-acfa-7527d66f2dd1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1912,7 +1730,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ba3d8106-0034-4aa4-9ddf-1ac244fef551", + "version": "a866822e-c9b0-4a96-acfa-7527d66f2dd1", "display_name": "ScoreModel", "is_deterministic": "True", "type": "command", @@ -1931,7 +1749,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3350f2e6-007c-4d7e-b609-72582726e490/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92789f04-083e-4034-b7c4-a5f1fa4d9999/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1941,11 +1759,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:26:25.9860825\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T02:58:17.1688867\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:26:26.503616\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T02:58:17.6526599\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1957,32 +1775,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:21 GMT", + "Date": "Wed, 12 Oct 2022 12:03:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f9a0bed1578984ef82156136a375f43e-b6437add33c26599-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cd9005c50e9a833f45468c098f7f9db0-a225e7daf8052486-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f98b7efc-0973-422d-b4e8-a131d17dcb99", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "f16dd713-065b-419f-9ba0-169ff4cf4c9a", + "x-ms-ratelimit-remaining-subscription-reads": "11938", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234422Z:f98b7efc-0973-422d-b4e8-a131d17dcb99", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T120303Z:f16dd713-065b-419f-9ba0-169ff4cf4c9a", + "x-request-time": "0.115" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1997,17 +1811,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2021,29 +1835,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:22 GMT", + "Date": "Wed, 12 Oct 2022 12:03:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0202499d42666847c79203258d354a79-bf9c111f4d99a2ce-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ae14d78f4a5ac3cdfe7d4d1c947eaf33-7b63b30c2c1d0b1c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a2153c6-194c-4934-a1df-cfe2bcc34277", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "32b1bd23-8cfe-4c79-9445-ee50fbc1879b", + "x-ms-ratelimit-remaining-subscription-writes": "1167", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234422Z:9a2153c6-194c-4934-a1df-cfe2bcc34277", - "x-request-time": "0.101" + "x-ms-routing-request-id": "JAPANEAST:20221012T120304Z:32b1bd23-8cfe-4c79-9445-ee50fbc1879b", + "x-request-time": "0.114" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2051,15 +1863,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/greenTaxiData.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/greenTaxiData.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:22 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:04 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -2068,9 +1880,9 @@ "Content-Length": "830766", "Content-MD5": "Oi4Z1vQHnvcCYff59aHKbg==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:44:21 GMT", - "ETag": "\u00220x8DAA27208C15531\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:26:28 GMT", + "Date": "Wed, 12 Oct 2022 12:03:04 GMT", + "ETag": "\u00220x8DAABFD9ED266F5\u0022", + "Last-Modified": "Wed, 12 Oct 2022 02:58:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2079,32 +1891,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:26:27 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 02:58:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "d291a756-adaf-4e74-bc9d-2e8cf0b99f7b", + "x-ms-meta-name": "5aa67994-e672-487b-a197-87de9ffb7a32", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a236e082-62f4-4138-b31a-00f6ee831e69", + "x-ms-meta-version": "2b6dce8c-d9dc-4d07-b4f5-6fb8f7cfac55", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/greenTaxiData.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/greenTaxiData.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:22 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:04 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:21 GMT", + "Date": "Wed, 12 Oct 2022 12:03:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2112,12 +1924,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2125,7 +1937,7 @@ "Connection": "keep-alive", "Content-Length": "5167", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2167,7 +1979,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60386c1f-dfa6-40fe-bceb-aa565364ca75" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99db73b1-3b27-480d-90c0-c23b1f8f0561" }, "transform_job": { "resources": null, @@ -2193,7 +2005,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b09e8c40-ae8d-4932-a2b6-bca57e96e4cb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7ff1cf23-26f2-48c7-8ca8-b6ec0d99b03b" }, "train_job": { "resources": null, @@ -2223,7 +2035,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ceedbdc-3885-44e1-8886-949f2cb98564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/76ad33d6-dfec-40db-a7a7-18301c439920" }, "predict_job": { "resources": null, @@ -2253,7 +2065,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2e82d0f-24b3-49b0-aa26-ed4c33d1528b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e7af07ab-8641-4404-884f-07b0ae101ca2" }, "score_job": { "resources": null, @@ -2283,7 +2095,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba3d8106-0034-4aa4-9ddf-1ac244fef551" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a866822e-c9b0-4a96-acfa-7527d66f2dd1" } }, "outputs": { @@ -2327,22 +2139,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8778", + "Content-Length": "8824", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:30 GMT", + "Date": "Wed, 12 Oct 2022 12:03:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4dccfbb3e719b47dd40e02b7082a00e8-24342dce69cc1660-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-11c1eccc069d96afc4e9543f297047a7-4ae3a14303724133-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be4c6d0d-f5d0-4b3f-adbb-76e24449105c", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "e736599b-ede4-49f7-8c15-3ad2d191aaba", + "x-ms-ratelimit-remaining-subscription-writes": "1126", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234430Z:be4c6d0d-f5d0-4b3f-adbb-76e24449105c", - "x-request-time": "5.849" + "x-ms-routing-request-id": "JAPANEAST:20221012T120312Z:e736599b-ede4-49f7-8c15-3ad2d191aaba", + "x-request-time": "3.250" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2373,7 +2185,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -2381,7 +2194,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -2418,7 +2232,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60386c1f-dfa6-40fe-bceb-aa565364ca75" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99db73b1-3b27-480d-90c0-c23b1f8f0561" }, "transform_job": { "resources": null, @@ -2444,7 +2258,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b09e8c40-ae8d-4932-a2b6-bca57e96e4cb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7ff1cf23-26f2-48c7-8ca8-b6ec0d99b03b" }, "train_job": { "resources": null, @@ -2474,7 +2288,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ceedbdc-3885-44e1-8886-949f2cb98564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/76ad33d6-dfec-40db-a7a7-18301c439920" }, "predict_job": { "resources": null, @@ -2504,7 +2318,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f2e82d0f-24b3-49b0-aa26-ed4c33d1528b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e7af07ab-8641-4404-884f-07b0ae101ca2" }, "score_job": { "resources": null, @@ -2534,7 +2348,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba3d8106-0034-4aa4-9ddf-1ac244fef551" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a866822e-c9b0-4a96-acfa-7527d66f2dd1" } }, "inputs": { @@ -2586,8 +2400,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:44:29.7062128\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:03:11.5950234\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json index fbab92a440925..56de6a2768910 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:59 GMT", + "Date": "Wed, 12 Oct 2022 12:05:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a58c1a8663ec5d70b5dfd5f6461d717b-c00837483da5235e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c9e3bc27c65b358a2e1b159300acf8d9-7e733c522e986554-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f0f6a81-44e4-4f56-8d06-e4d5869e6b4d", - "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-correlation-request-id": "ef931f5e-361f-4a9d-bf29-d41073fc8015", + "x-ms-ratelimit-remaining-subscription-reads": "11918", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234600Z:3f0f6a81-44e4-4f56-8d06-e4d5869e6b4d", - "x-request-time": "0.109" + "x-ms-routing-request-id": "JAPANEAST:20221012T120513Z:ef931f5e-361f-4a9d-bf29-d41073fc8015", + "x-request-time": "0.104" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +43,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,29 +67,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:00 GMT", + "Date": "Wed, 12 Oct 2022 12:05:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0e72cdf036be8fa5b3b481081de42c79-1382d5430123a8fb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-de18ec0bd941a175136ed8f94006de0e-4864a9b01286deee-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d0deac4-f5fa-477e-b9c7-a463df6645e7", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "d5b75af9-23f4-4f6e-8a8a-714c4baebc9f", + "x-ms-ratelimit-remaining-subscription-writes": "1153", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234600Z:6d0deac4-f5fa-477e-b9c7-a463df6645e7", - "x-request-time": "0.225" + "x-ms-routing-request-id": "JAPANEAST:20221012T120514Z:d5b75af9-23f4-4f6e-8a8a-714c4baebc9f", + "x-request-time": "0.109" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,200 +95,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:00 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/file_batch_inference.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1377", - "Content-MD5": "ssg/A2ubXwbxCqYfP/U6Mw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:01 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "IyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiMgQ29weXJpZ2h0IChjKSBNaWNyb3NvZnQgQ29ycG9yYXRpb24uIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQojIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KIiIiVGhpcyBtb2R1bGUgc2ltdWxhdGUgcnVuKCkgd2hpY2ggY2FuIHNwZWNpZnkgc3VjY2VlZCBldmVyeSBuIGl0ZW1zIGZyb20gYXJndW1lbnQuIiIiDQppbXBvcnQgYXJncGFyc2UNCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aA0KDQoNCmRlZiBpbml0KCk6DQogICAgIiIiSW5pdC4iIiINCiAgICBnbG9iYWwgT1VUUFVUX1BBVEgNCg0KICAgIHBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKGFsbG93X2FiYnJldj1GYWxzZSwgZGVzY3JpcHRpb249IlBhcmFsbGVsUnVuU3RlcCBBZ2VudCIpDQogICAgcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1qb2Jfb3V0cHV0X3BhdGgiLCB0eXBlPXN0ciwgZGVmYXVsdD0wKQ0KICAgIGFyZ3MsIF8gPSBwYXJzZXIucGFyc2Vfa25vd25fYXJncygpDQogICAgT1VUUFVUX1BBVEggPSBhcmdzLmpvYl9vdXRwdXRfcGF0aA0KICAgIHByaW50KCJQYXNzIHRocm91Z2ggaW5pdCBkb25lIikNCg0KDQpkZWYgcnVuKG1pbmlfYmF0Y2gpOg0KICAgICIiIlJ1bi4iIiINCg0KICAgIGZvciBmaWxlX3BhdGggaW4gbWluaV9iYXRjaDoNCiAgICAgICAgZmlsZSA9IFBhdGgoZmlsZV9wYXRoKQ0KICAgICAgICBwcmludCgiUHJvY2Vzc2luZyB7fSIuZm9ybWF0KGZpbGUpKQ0KICAgICAgICBhc3NlcnQgZmlsZS5leGlzdHMoKQ0KDQogICAgICAgICMgVHdvIGN1c3RvbWVycyByZXBvcnRlZCB0cmFuc2llbnQgZXJyb3Igd2hlbiB1c2luZyBPdXRwdXRGaWxlRGF0YXNldENvbmZpZy4NCiAgICAgICAgIyBJdCBoaXRzICJGaWxlTm90Rm91bmRFcnJvciIgd2hlbiB3cml0aW5nIHRvIGEgZmlsZSBpbiB0aGUgb3V0cHV0X2RpciBmb2xkZXIsDQogICAgICAgICMgIGV2ZW4gdGhlIGZvbGRlciBkaWQgZXhpc3QgcGVyIGxvZ3MuDQogICAgICAgICMgVGhpcyBpcyB0byBzaW11bGF0ZSBzdWNoIGNhc2UgYW5kIGhvcGUgd2UgY2FuIHJlcHJvIGluIG91ciBnYXRlZCBidWlsZC4NCiAgICAgICAgb3V0cHV0X2RpciA9IFBhdGgoT1VUUFVUX1BBVEgpDQogICAgICAgIHByaW50KCJvdXRwdXRfZGlyIiwgb3V0cHV0X2RpcikNCiAgICAgICAgcHJpbnQoIm91dHB1dF9kaXIgZXhpdHMiLCBQYXRoKG91dHB1dF9kaXIpLmV4aXN0cygpKQ0KICAgICAgICAoUGF0aChvdXRwdXRfZGlyKSAvIGZpbGUubmFtZSkud3JpdGVfdGV4dChmaWxlX3BhdGgpDQoNCiAgICByZXR1cm4gbWluaV9iYXRjaA0K", - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "ssg/A2ubXwbxCqYfP/U6Mw==", - "Date": "Thu, 29 Sep 2022 23:46:00 GMT", - "ETag": "\u00220x8DAA274C3CE086E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "D3hh/pJKVNA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:01 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aA0KDQpwYXJzZXIgPSBhcmdwYXJzZS5Bcmd1bWVudFBhcnNlcigpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWlucHV0X2RhdGEiLCB0eXBlPXN0cikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tZmlsZV9vdXRwdXRfZGF0YSIsIHR5cGU9c3RyKQ0KDQphcmdzID0gcGFyc2VyLnBhcnNlX2FyZ3MoKQ0KDQpwcmludCgiaW5wdXRfZGF0YSBwYXRoOiAlcyIgJSBhcmdzLmlucHV0X2RhdGEpDQoNCnByaW50KCJmaWxlcyBpbiBpbnB1dF9kYXRhIHBhdGg6ICIpDQphcnIgPSBvcy5saXN0ZGlyKGFyZ3MuaW5wdXRfZGF0YSkNCnByaW50KGFycikNCg0Kb3V0cHV0X2RpciA9IFBhdGgoYXJncy5maWxlX291dHB1dF9kYXRhKQ0KcHJpbnQoImZpbGVfb3V0cHV0X2RpciIsIG91dHB1dF9kaXIpDQpwcmludCgiZmlsZV9vdXRwdXRfZGlyIGV4aXRzIiwgUGF0aChvdXRwdXRfZGlyKS5leGlzdHMoKSkNCg0KTUxUYWJsZSA9IG91dHB1dF9kaXIgLyAiTUxUYWJsZSINCk1MVGFibGUud3JpdGVfdGV4dCgicGF0aHM6IikNCg0KZm9yIGZpbGVfbmFtZSBpbiBhcnI6DQogICAgZGF0YV9wYXRoID0gUGF0aChhcmdzLmlucHV0X2RhdGEgKyAiLyIgKyBmaWxlX25hbWUpDQogICAgcHJpbnQoIlByb2Nlc3Npbmcge30iLmZvcm1hdChkYXRhX3BhdGgpKQ0KICAgIChvdXRwdXRfZGlyIC8gZGF0YV9wYXRoLm5hbWUpLndyaXRlX3RleHQoZmlsZV9uYW1lKQ0KICAgIHdpdGggTUxUYWJsZS5vcGVuKG1vZGU9ImEiKSBhcyBmOg0KICAgICAgICBmLndyaXRlKGYiXG4gIC0gZmlsZTogLi97ZGF0YV9wYXRoLm5hbWV9IikNCiAgICAjIHNodXRpbC5tb3ZlKGRhdGFfcGF0aCwgUGF0aChvdXRwdXRfZGlyIC8gZGF0YV9wYXRoLm5hbWUpKQ0KICAgICMgTUxUYWJsZS53cml0ZV90ZXh0KGYiXHRcdC1cdGZpbGU6XHQuL3tkYXRhX3BhdGgubmFtZX0iKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "DhunCanKGufSVuPKEYN51w==", - "Date": "Thu, 29 Sep 2022 23:46:00 GMT", - "ETag": "\u00220x8DAA274C3CF8ECE\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "gWKCKdhBsnA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/tabular_batch_inference.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1102", - "Content-MD5": "jO1FYErTQcHautv7oG0/KQ==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:01 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "IyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCiMgQ29weXJpZ2h0IChjKSBNaWNyb3NvZnQgQ29ycG9yYXRpb24uIEFsbCByaWdodHMgcmVzZXJ2ZWQuDQojIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQ0KIiIiVGhpcyBtb2R1bGUgd2lsbCBsb2FkIG1sZmxvdyBtb2RlbCBhbmQgZG8gcHJlZGljdGlvbi4iIiINCg0KaW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCg0KZnJvbSBtbGZsb3cuc2tsZWFybiBpbXBvcnQgbG9hZF9tb2RlbA0KDQpNT0RFTF9OQU1FID0gImlyaXNfbW9kZWwiDQoNCg0KZGVmIGluaXQoKToNCiAgICBwcmludCgiRW52aXJvbm1lbnQgdmFyaWFibGVzIHN0YXJ0ICoqKioiKQ0KICAgIGZvciBrZXksIHZhbCBpbiBvcy5lbnZpcm9uLml0ZW1zKCk6DQogICAgICAgIHByaW50KGtleSwgdmFsKQ0KICAgIHByaW50KCJFbnZpcm9ubWVudCB2YXJpYWJsZXMgZW5kICoqKioiKQ0KDQogICAgcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoYWxsb3dfYWJicmV2PUZhbHNlLCBkZXNjcmlwdGlvbj0iUGFyYWxsZWxSdW5TdGVwIEFnZW50IikNCiAgICBwYXJzZXIuYWRkX2FyZ3VtZW50KCItLW1vZGVsIiwgdHlwZT1zdHIsIGRlZmF1bHQ9MCkNCiAgICBhcmdzLCBfID0gcGFyc2VyLnBhcnNlX2tub3duX2FyZ3MoKQ0KDQogICAgbW9kZWxfcGF0aCA9IGFyZ3MubW9kZWwgKyAiLyIgKyBNT0RFTF9OQU1FDQogICAgZ2xvYmFsIGlyaXNfbW9kZWwNCg0KICAgIGlyaXNfbW9kZWwgPSBsb2FkX21vZGVsKG1vZGVsX3BhdGgpDQoNCg0KZGVmIHJ1bihpbnB1dF9kYXRhKToNCiAgICBudW1fcm93cywgbnVtX2NvbHMgPSBpbnB1dF9kYXRhLnNoYXBlDQogICAgcHJlZCA9IGlyaXNfbW9kZWwucHJlZGljdChpbnB1dF9kYXRhKS5yZXNoYXBlKChudW1fcm93cywgMSkpDQoNCiAgICAjIGNsZWFudXAgb3V0cHV0DQogICAgcmVzdWx0ID0gaW5wdXRfZGF0YS5kcm9wKGlucHV0X2RhdGEuY29sdW1uc1s0Ol0sIGF4aXM9MSkNCiAgICByZXN1bHRbInZhcmlldHkiXSA9IHByZWQNCg0KICAgIHJldHVybiByZXN1bHQNCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "jO1FYErTQcHautv7oG0/KQ==", - "Date": "Thu, 29 Sep 2022 23:46:00 GMT", - "ETag": "\u00220x8DAA274C3D755E3\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", + "Date": "Wed, 12 Oct 2022 12:05:13 GMT", + "ETag": "\u00220x8DAAC46CD3E850B\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:42:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "JRBxe4F/P7o=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/get_data.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1937", - "Content-MD5": "PDVVv0cqT2sWwipbDspW2A==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:01 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmltcG9ydCBzaHV0aWwNCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aA0KDQpwcmludCgiR2V0IGZpbGUgYW5kIHRhYnVsYXIgZGF0YSIpDQoNCnBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKCkNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0taW5wdXRfZGF0YSIsIHR5cGU9c3RyKQ0KcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1maWxlX291dHB1dF9kYXRhIiwgdHlwZT1zdHIpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLXRhYnVsYXJfb3V0cHV0X2RhdGEiLCB0eXBlPXN0cikNCg0KYXJncyA9IHBhcnNlci5wYXJzZV9hcmdzKCkNCg0KcHJpbnQoInNhbXBsZV9pbnB1dF9kYXRhIHBhdGg6ICVzIiAlIGFyZ3MuaW5wdXRfZGF0YSkNCnByaW50KCJzYW1wbGVfZmlsZV9vdXRwdXRfZGF0YSBwYXRoOiAlcyIgJSBhcmdzLmZpbGVfb3V0cHV0X2RhdGEpDQpwcmludCgic2FtcGxlX3RhYnVsYXJfb3V0cHV0X2RhdGEgcGF0aDogJXMiICUgYXJncy50YWJ1bGFyX291dHB1dF9kYXRhKQ0KDQpwcmludCgiZmlsZXMgaW4gaW5wdXRfZGF0YSBwYXRoOiAiKQ0KYXJyID0gb3MubGlzdGRpcihhcmdzLmlucHV0X2RhdGEpDQpwcmludChhcnIpDQoNCmZvciBmb2xkZXJfbmFtZSBpbiBhcnI6DQogICAgZGF0YV9wYXRoID0gYXJncy5pbnB1dF9kYXRhICsgIi8iICsgZm9sZGVyX25hbWUNCiAgICBmaWxlcyA9IG9zLmxpc3RkaXIoZGF0YV9wYXRoKQ0KICAgIHByaW50KGZpbGVzKQ0KICAgIGlmIGZvbGRlcl9uYW1lID09ICJtbmlzdC1kYXRhIjoNCiAgICAgICAgb3V0cHV0X2RpciA9IFBhdGgoYXJncy5maWxlX291dHB1dF9kYXRhKQ0KICAgICAgICBwcmludCgiZmlsZV9vdXRwdXRfZGlyIiwgb3V0cHV0X2RpcikNCiAgICAgICAgcHJpbnQoImZpbGVfb3V0cHV0X2RpciBleGl0cyIsIFBhdGgob3V0cHV0X2RpcikuZXhpc3RzKCkpDQoNCiAgICAgICAgZm9yIGZpbGVfcGF0aCBpbiBmaWxlczoNCiAgICAgICAgICAgIGZpbGVfc291cmNlID0gUGF0aChkYXRhX3BhdGggKyAiLyIgKyBmaWxlX3BhdGgpDQogICAgICAgICAgICBwcmludCgiUHJvY2Vzc2luZyB7fSIuZm9ybWF0KGZpbGVfc291cmNlKSkNCiAgICAgICAgICAgIGFzc2VydCBmaWxlX3NvdXJjZS5leGlzdHMoKQ0KICAgICAgICAgICAgZmlsZV9kZXN0aW5hdGlvbiA9IFBhdGgob3V0cHV0X2RpcikgLyBmaWxlX3NvdXJjZS5uYW1lDQogICAgICAgICAgICBwcmludCgiZmlsZV9kZXN0aW5hdGlvbjoiLCBmaWxlX2Rlc3RpbmF0aW9uKQ0KICAgICAgICAgICAgc2h1dGlsLm1vdmUoZmlsZV9zb3VyY2UsIGZpbGVfZGVzdGluYXRpb24pDQoNCiAgICBlbGlmIGZvbGRlcl9uYW1lID09ICJpcmlzLW1sdGFibGUiOg0KICAgICAgICBvdXRwdXRfZGlyID0gUGF0aChhcmdzLnRhYnVsYXJfb3V0cHV0X2RhdGEpDQogICAgICAgIHByaW50KCJ0YWJ1bGFyX291dHB1dF9kaXIiLCBvdXRwdXRfZGlyKQ0KICAgICAgICBwcmludCgidGFidWxhcl9vdXRwdXRfZGlyIGV4aXRzIiwgUGF0aChvdXRwdXRfZGlyKS5leGlzdHMoKSkNCg0KICAgICAgICBmb3IgZmlsZV9wYXRoIGluIGZpbGVzOg0KICAgICAgICAgICAgZmlsZV9zb3VyY2UgPSBQYXRoKGRhdGFfcGF0aCArICIvIiArIGZpbGVfcGF0aCkNCiAgICAgICAgICAgIHByaW50KCJQcm9jZXNzaW5nIHt9Ii5mb3JtYXQoZmlsZV9zb3VyY2UpKQ0KICAgICAgICAgICAgYXNzZXJ0IGZpbGVfc291cmNlLmV4aXN0cygpDQogICAgICAgICAgICBmaWxlX2Rlc3RpbmF0aW9uID0gUGF0aChvdXRwdXRfZGlyKSAvIGZpbGVfc291cmNlLm5hbWUNCiAgICAgICAgICAgIHByaW50KCJmaWxlX2Rlc3RpbmF0aW9uOiIsIGZpbGVfZGVzdGluYXRpb24pDQogICAgICAgICAgICBzaHV0aWwubW92ZShmaWxlX3NvdXJjZSwgZmlsZV9kZXN0aW5hdGlvbikNCiAgICBlbHNlOg0KICAgICAgICBwYXNzDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "PDVVv0cqT2sWwipbDspW2A==", - "Date": "Thu, 29 Sep 2022 23:46:00 GMT", - "ETag": "\u00220x8DAA274C3D8672D\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "hD5r7blRTFQ=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Wed, 12 Oct 2022 11:42:11 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "f2dfb3f1-dd09-4e01-baeb-6fd024a01add", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:01 GMT", - "x-ms-meta-name": "738f0f3b-86a8-42f9-83ef-1009a17988e9", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:46:00 GMT", - "ETag": "\u00220x8DAA274C3E13F87\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", + "Date": "Wed, 12 Oct 2022 12:05:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -302,7 +169,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -312,31 +179,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:01 GMT", + "Date": "Wed, 12 Oct 2022 12:05:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-daa44bf8d80763f621d7e11da596d655-c0e783ae9298aba8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-57c41949ec1096b5622ee03d39fb33c0-c2a54a40623097c4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec65c85b-0fa9-4d5d-b162-17316f88e569", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "eadf5dc6-3cb4-4106-9cc2-f8c0eb25ad76", + "x-ms-ratelimit-remaining-subscription-writes": "1104", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234602Z:ec65c85b-0fa9-4d5d-b162-17316f88e569", - "x-request-time": "0.531" + "x-ms-routing-request-id": "JAPANEAST:20221012T120515Z:eadf5dc6-3cb4-4106-9cc2-f8c0eb25ad76", + "x-request-time": "0.184" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -348,14 +215,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:46:01.8026562\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:12.3881181\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:01.8026562\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:05:14.9472189\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -369,7 +236,7 @@ "Connection": "keep-alive", "Content-Length": "897", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -379,7 +246,7 @@ "isArchived": false, "componentSpec": { "command": "python get_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}} --tabular_output_data ${{outputs.tabular_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -407,26 +274,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1934", + "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:05 GMT", + "Date": "Wed, 12 Oct 2022 12:05:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d24959259b42a2ea54b9b22a1861f8f5-11b8b4e312ffad33-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2921cbdb8d9376b3be19ca59100d7538-19412312d5b00475-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c51b5260-2878-4b0c-9455-023a186ff883", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "057eac4f-1f34-42c7-ab21-810959bd7992", + "x-ms-ratelimit-remaining-subscription-writes": "1103", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234606Z:c51b5260-2878-4b0c-9455-023a186ff883", - "x-request-time": "3.724" + "x-ms-routing-request-id": "JAPANEAST:20221012T120516Z:057eac4f-1f34-42c7-ab21-810959bd7992", + "x-request-time": "1.222" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c63f7ef3-fc84-4bd9-a5ea-14062df63d31", - "name": "c63f7ef3-fc84-4bd9-a5ea-14062df63d31", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4fae7156-16e4-4625-931e-13184542dbeb", + "name": "4fae7156-16e4-4625-931e-13184542dbeb", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -436,7 +303,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "c63f7ef3-fc84-4bd9-a5ea-14062df63d31", + "version": "4fae7156-16e4-4625-931e-13184542dbeb", "display_name": "Get_File_Tabular_Dataset", "is_deterministic": "True", "type": "command", @@ -454,7 +321,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -464,11 +331,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:05.5502792\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:14.5797064\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:05.5502792\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:42:15.057315\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -480,32 +347,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:05 GMT", + "Date": "Wed, 12 Oct 2022 12:05:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-09a34965a98a430c96e8f288305857bc-aedcef94b2fb22c2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e83287e6f90c9edc12e06fc9627f16a3-63e5c1e63b7889fd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45c569d1-dcac-43d7-986f-093e112e130f", - "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-correlation-request-id": "318ea2fa-7b98-46c2-8eed-e3973cc71720", + "x-ms-ratelimit-remaining-subscription-reads": "11917", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234606Z:45c569d1-dcac-43d7-986f-093e112e130f", - "x-request-time": "0.080" + "x-ms-routing-request-id": "JAPANEAST:20221012T120517Z:318ea2fa-7b98-46c2-8eed-e3973cc71720", + "x-request-time": "0.231" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -520,17 +383,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -544,29 +407,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:05 GMT", + "Date": "Wed, 12 Oct 2022 12:05:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-60acd083f5e40da113bf78e0de12a779-3295e2e3acf3dd19-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0a86b13063abed05253e994661e23d71-04117bb308dfc61b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abf243c5-b831-46ca-8caf-bffa7c316ec1", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "f9d3a15d-4922-4302-b2b4-7ed64b80334f", + "x-ms-ratelimit-remaining-subscription-writes": "1152", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234606Z:abf243c5-b831-46ca-8caf-bffa7c316ec1", - "x-request-time": "0.097" + "x-ms-routing-request-id": "JAPANEAST:20221012T120518Z:f9d3a15d-4922-4302-b2b4-7ed64b80334f", + "x-request-time": "0.165" }, "ResponseBody": { "secretsType": "AccountKey", @@ -574,15 +435,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:06 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -591,9 +452,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:46:06 GMT", - "ETag": "\u00220x8DAA274C3E13F87\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", + "Date": "Wed, 12 Oct 2022 12:05:18 GMT", + "ETag": "\u00220x8DAAC46CD3E850B\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:42:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -602,32 +463,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:46:01 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:42:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "738f0f3b-86a8-42f9-83ef-1009a17988e9", + "x-ms-meta-name": "f2dfb3f1-dd09-4e01-baeb-6fd024a01add", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:06 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:06 GMT", + "Date": "Wed, 12 Oct 2022 12:05:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -635,12 +496,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -648,7 +509,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -658,35 +519,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:06 GMT", + "Date": "Wed, 12 Oct 2022 12:05:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-02ceaefd61362bc16ace5d87b92626ad-ffcc23326aed8a1a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ee2d23c9b524d8ea0bce2bd7212e650a-37613bcf6bba61e6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9965a775-c01e-4fff-a9dc-46e6643eae9a", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "6cd8bd04-fccc-4680-984c-f1a934fa296a", + "x-ms-ratelimit-remaining-subscription-writes": "1102", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234607Z:9965a775-c01e-4fff-a9dc-46e6643eae9a", - "x-request-time": "0.195" + "x-ms-routing-request-id": "JAPANEAST:20221012T120519Z:6cd8bd04-fccc-4680-984c-f1a934fa296a", + "x-request-time": "0.216" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -698,14 +555,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:46:01.8026562\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:12.3881181\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:07.0907403\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:05:19.0422993\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -719,7 +576,7 @@ "Connection": "keep-alive", "Content-Length": "1217", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -753,7 +610,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -771,24 +628,24 @@ "Cache-Control": "no-cache", "Content-Length": "2224", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:10 GMT", + "Date": "Wed, 12 Oct 2022 12:05:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-55279d1e69becf8f2ff539b6de5308df-97fb5f9398c1d2d9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fa879651bbc0f3d60293c6c86e6023b1-b6540091467bc785-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08a7d178-c778-4572-b23a-ebb0e8e6c827", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "c7041339-7695-44b1-a358-0bdf80583fbb", + "x-ms-ratelimit-remaining-subscription-writes": "1101", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234610Z:08a7d178-c778-4572-b23a-ebb0e8e6c827", - "x-request-time": "3.414" + "x-ms-routing-request-id": "JAPANEAST:20221012T120520Z:c7041339-7695-44b1-a358-0bdf80583fbb", + "x-request-time": "1.202" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2012af30-cd61-42cd-a29f-eed67e10075a", - "name": "2012af30-cd61-42cd-a29f-eed67e10075a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", + "name": "3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -798,7 +655,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2012af30-cd61-42cd-a29f-eed67e10075a", + "version": "3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -816,7 +673,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "file_batch_inference.py", @@ -836,11 +693,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:10.3303811\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:19.3551047\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:10.3303811\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:42:19.8806167\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -852,32 +709,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:10 GMT", + "Date": "Wed, 12 Oct 2022 12:05:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9c52573ae3afdd759d03fa6f0f15475c-ffecfe485efce292-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7541f4873c45461addadf1f75ac71ba4-fa204db35f37bf4b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1508c2f9-807a-4537-8c67-6926082e78fe", - "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-correlation-request-id": "4b7cb438-f1de-4495-8a15-d74e44a20481", + "x-ms-ratelimit-remaining-subscription-reads": "11916", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234611Z:1508c2f9-807a-4537-8c67-6926082e78fe", - "x-request-time": "0.110" + "x-ms-routing-request-id": "JAPANEAST:20221012T120521Z:4b7cb438-f1de-4495-8a15-d74e44a20481", + "x-request-time": "0.151" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -892,17 +745,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -916,29 +769,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:10 GMT", + "Date": "Wed, 12 Oct 2022 12:05:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-bcaa2a34958f304823f5401e286a65f3-a7c6caf94f64cca5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-434f3d3febf419b7c2d99cf69dfd21c3-d1f43eca5db282e1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b019fa2-be00-427e-a762-64a765ceb9f3", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "4993bec5-06dd-4367-bee8-013202c170f4", + "x-ms-ratelimit-remaining-subscription-writes": "1151", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234611Z:1b019fa2-be00-427e-a762-64a765ceb9f3", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T120522Z:4993bec5-06dd-4367-bee8-013202c170f4", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -946,15 +797,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:11 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -963,9 +814,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:46:11 GMT", - "ETag": "\u00220x8DAA274C3E13F87\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", + "Date": "Wed, 12 Oct 2022 12:05:22 GMT", + "ETag": "\u00220x8DAAC46CD3E850B\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:42:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -974,32 +825,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:46:01 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:42:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "738f0f3b-86a8-42f9-83ef-1009a17988e9", + "x-ms-meta-name": "f2dfb3f1-dd09-4e01-baeb-6fd024a01add", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:11 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:23 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:11 GMT", + "Date": "Wed, 12 Oct 2022 12:05:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1007,12 +858,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1020,7 +871,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1030,35 +881,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:11 GMT", + "Date": "Wed, 12 Oct 2022 12:05:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-50dedfd3e8f4544854658025277ecf2a-110cd87c358f8d32-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1c963b4773254383f76d32bb11d7310a-2c3265f69882f015-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a742882-2f72-40f5-b194-dfe503de3d08", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "46b857dc-1846-45db-9cd3-fb8689992dbf", + "x-ms-ratelimit-remaining-subscription-writes": "1100", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234612Z:5a742882-2f72-40f5-b194-dfe503de3d08", - "x-request-time": "0.174" + "x-ms-routing-request-id": "JAPANEAST:20221012T120523Z:46b857dc-1846-45db-9cd3-fb8689992dbf", + "x-request-time": "0.186" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1070,14 +917,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:46:01.8026562\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:12.3881181\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:11.9805801\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:05:23.6044279\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1091,7 +938,7 @@ "Connection": "keep-alive", "Content-Length": "809", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1101,7 +948,7 @@ "isArchived": false, "componentSpec": { "command": "python convert_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -1126,26 +973,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1818", + "Content-Length": "1817", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:14 GMT", + "Date": "Wed, 12 Oct 2022 12:05:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-741ee255b352144e744c4b0da4e2027e-7e3e09116657e595-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f5144374786c18ec04386edd2ba32a34-925f6062c5c1b255-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "817b6067-755f-436a-8037-2cb374e5d2fc", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "03c1afdf-4980-4606-bf10-360fd1707819", + "x-ms-ratelimit-remaining-subscription-writes": "1099", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234615Z:817b6067-755f-436a-8037-2cb374e5d2fc", - "x-request-time": "3.319" + "x-ms-routing-request-id": "JAPANEAST:20221012T120525Z:03c1afdf-4980-4606-bf10-360fd1707819", + "x-request-time": "1.489" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ff4682da-25e1-4854-b90f-29ec1ccdc8e9", - "name": "ff4682da-25e1-4854-b90f-29ec1ccdc8e9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/abebd8d5-db53-43d4-9438-04aef2f6a043", + "name": "abebd8d5-db53-43d4-9438-04aef2f6a043", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1155,7 +1002,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ff4682da-25e1-4854-b90f-29ec1ccdc8e9", + "version": "abebd8d5-db53-43d4-9438-04aef2f6a043", "display_name": "Convert_To_Mltable_File_Dataset", "is_deterministic": "True", "type": "command", @@ -1170,7 +1017,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1180,11 +1027,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:14.8933753\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:24.2943216\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:14.8933753\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:42:24.824946\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1196,32 +1043,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:15 GMT", + "Date": "Wed, 12 Oct 2022 12:05:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8b6f7d20e0398f438b846b76c263d42a-da716af47eef911c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3a7fc2ffcbe626cb43bdf23947ac4e9c-c280cda63bb4cbdd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ddce668-660a-459f-b1b6-6f572de27f0c", - "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-correlation-request-id": "d17ebbdb-b0ae-47c3-bc87-a7e35845c562", + "x-ms-ratelimit-remaining-subscription-reads": "11915", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234615Z:7ddce668-660a-459f-b1b6-6f572de27f0c", - "x-request-time": "0.098" + "x-ms-routing-request-id": "JAPANEAST:20221012T120526Z:d17ebbdb-b0ae-47c3-bc87-a7e35845c562", + "x-request-time": "0.148" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1236,17 +1079,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1260,29 +1103,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:15 GMT", + "Date": "Wed, 12 Oct 2022 12:05:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a1b7bb7528512ab6fa8d67f474b0f7b1-bb9e26e13afb072e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-55525544e4667911903a418066dbaee3-53ff7ddfaff70649-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a6c4132-dbb9-4c4d-bedc-7b996596b8e0", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "6e95b3e2-7f51-4524-ae5c-4a01d3e51599", + "x-ms-ratelimit-remaining-subscription-writes": "1150", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234616Z:1a6c4132-dbb9-4c4d-bedc-7b996596b8e0", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221012T120526Z:6e95b3e2-7f51-4524-ae5c-4a01d3e51599", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1290,15 +1131,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:16 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:26 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1307,9 +1148,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:46:15 GMT", - "ETag": "\u00220x8DAA274C3E13F87\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", + "Date": "Wed, 12 Oct 2022 12:05:26 GMT", + "ETag": "\u00220x8DAAC46CD3E850B\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:42:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1318,32 +1159,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:46:01 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:42:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "738f0f3b-86a8-42f9-83ef-1009a17988e9", + "x-ms-meta-name": "f2dfb3f1-dd09-4e01-baeb-6fd024a01add", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:16 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:27 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:15 GMT", + "Date": "Wed, 12 Oct 2022 12:05:26 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1351,12 +1192,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1364,7 +1205,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1374,35 +1215,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:16 GMT", + "Date": "Wed, 12 Oct 2022 12:05:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0a0b29fa510c7218593867bcffb3ab7f-d1f9d81f8f867a08-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5307bac9d15e184da1ee8d57bc530a08-95ae1f2e46fe1323-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ad29b03-21d2-48aa-9d47-ea5161cc2f42", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "637e95a3-6333-4c8f-8c22-c29c8121463f", + "x-ms-ratelimit-remaining-subscription-writes": "1098", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234616Z:8ad29b03-21d2-48aa-9d47-ea5161cc2f42", - "x-request-time": "0.183" + "x-ms-routing-request-id": "JAPANEAST:20221012T120527Z:637e95a3-6333-4c8f-8c22-c29c8121463f", + "x-request-time": "0.192" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1414,14 +1251,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:46:01.8026562\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:12.3881181\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:16.7157439\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:05:27.6961746\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1435,7 +1272,7 @@ "Connection": "keep-alive", "Content-Length": "1217", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1469,7 +1306,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -1487,24 +1324,24 @@ "Cache-Control": "no-cache", "Content-Length": "2224", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:19 GMT", + "Date": "Wed, 12 Oct 2022 12:05:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fe71bd46626d708b2444ea6e8365c3ed-6ae65a5a1ea21ce9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7eec4fa2d6d688db8b828e6838f97cd4-cda57a05706bbb9e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcc31443-a8b9-42d1-bc96-77309432b132", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "1a46e151-6586-47f4-a49a-6516d1e6a5ee", + "x-ms-ratelimit-remaining-subscription-writes": "1097", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234619Z:fcc31443-a8b9-42d1-bc96-77309432b132", - "x-request-time": "2.765" + "x-ms-routing-request-id": "JAPANEAST:20221012T120529Z:1a46e151-6586-47f4-a49a-6516d1e6a5ee", + "x-request-time": "1.262" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2012af30-cd61-42cd-a29f-eed67e10075a", - "name": "2012af30-cd61-42cd-a29f-eed67e10075a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", + "name": "3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1514,7 +1351,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2012af30-cd61-42cd-a29f-eed67e10075a", + "version": "3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -1532,7 +1369,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "file_batch_inference.py", @@ -1552,11 +1389,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:10.3303811\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:19.3551047\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:10.8254938\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:42:19.8806167\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1568,32 +1405,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:19 GMT", + "Date": "Wed, 12 Oct 2022 12:05:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d2833fd155fe8bcb56727e5106fa584a-9b5eb01f17751eb9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e42aa3b4dd385d6f59af190015d591fd-fc49b362c841be69-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b8c1ecf-1383-4437-b462-0303c708a387", - "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-correlation-request-id": "8031fa58-06a0-41df-95e6-36a4a0d05141", + "x-ms-ratelimit-remaining-subscription-reads": "11914", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234620Z:8b8c1ecf-1383-4437-b462-0303c708a387", - "x-request-time": "0.081" + "x-ms-routing-request-id": "JAPANEAST:20221012T120530Z:8031fa58-06a0-41df-95e6-36a4a0d05141", + "x-request-time": "0.116" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1608,17 +1441,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1632,29 +1465,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:19 GMT", + "Date": "Wed, 12 Oct 2022 12:05:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3055b03f712220a15f2671e5597a6621-fbfbcf19634d6225-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-41dffa601ba2a3f91dbb45b56b0c963f-649b1dcd7e5de1bd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afcaa37f-c596-4b23-9de3-7c53d0631d3a", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "2d655f91-e5d2-45f0-aabd-21e22454bada", + "x-ms-ratelimit-remaining-subscription-writes": "1149", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234620Z:afcaa37f-c596-4b23-9de3-7c53d0631d3a", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221012T120530Z:2d655f91-e5d2-45f0-aabd-21e22454bada", + "x-request-time": "0.144" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1662,15 +1493,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:20 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1679,9 +1510,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:46:20 GMT", - "ETag": "\u00220x8DAA274C3E13F87\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:01 GMT", + "Date": "Wed, 12 Oct 2022 12:05:30 GMT", + "ETag": "\u00220x8DAAC46CD3E850B\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:42:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1690,32 +1521,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:46:01 GMT", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:42:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "738f0f3b-86a8-42f9-83ef-1009a17988e9", + "x-ms-meta-name": "f2dfb3f1-dd09-4e01-baeb-6fd024a01add", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:20 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:20 GMT", + "Date": "Wed, 12 Oct 2022 12:05:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1723,12 +1554,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1736,7 +1567,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1746,35 +1577,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:20 GMT", + "Date": "Wed, 12 Oct 2022 12:05:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f482a1fcb64f02f2731614639c3153b1-fe5ddd7f4a5ddc20-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-30277ba0c361e8c559c86102fedc5994-0f9ad2384bd07dbb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d9b0d06-5b41-464d-9e41-de8478f0c126", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "c50f8056-a87c-4040-8a78-664db9c112a6", + "x-ms-ratelimit-remaining-subscription-writes": "1096", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234621Z:3d9b0d06-5b41-464d-9e41-de8478f0c126", - "x-request-time": "0.216" + "x-ms-routing-request-id": "JAPANEAST:20221012T120535Z:c50f8056-a87c-4040-8a78-664db9c112a6", + "x-request-time": "0.192" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1786,14 +1613,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:46:01.8026562\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:12.3881181\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:21.1058558\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:05:35.3283474\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1807,7 +1634,7 @@ "Connection": "keep-alive", "Content-Length": "416", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1819,24 +1646,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Build-ID": "ca4", + "Build-ID": "cap", "Cache-Control": "no-cache", - "Content-Length": "1359", + "Content-Length": "1351", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:21 GMT", + "Date": "Wed, 12 Oct 2022 12:05:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-bdb38a6e6777f0f2cb9354d9e61f3410-a90aff945345af29-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-31c9a9300cecd2b394bee45c5a45cf36-8ec4b7ee7d4893ec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be6ea0ec-6028-457f-bc61-3fbe742e3e6f", - "x-ms-ratelimit-remaining-subscription-writes": "1159", + "x-ms-correlation-request-id": "687c4068-efd0-4c01-b555-670e665fe6a4", + "x-ms-ratelimit-remaining-subscription-writes": "1095", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234621Z:be6ea0ec-6028-457f-bc61-3fbe742e3e6f", - "x-request-time": "0.351" + "x-ms-routing-request-id": "JAPANEAST:20221012T120536Z:687c4068-efd0-4c01-b555-670e665fe6a4", + "x-request-time": "0.745" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", @@ -1854,11 +1681,11 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-29T23:30:29.9190948\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:56:46.9554352\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:30:29.9190948\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-09-23T09:56:46.9554352\u002B00:00", + "lastModifiedBy": "Ying Chen", "lastModifiedByType": "User" } } @@ -1872,7 +1699,7 @@ "Connection": "keep-alive", "Content-Length": "1543", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1908,7 +1735,7 @@ "logging_level": "DEBUG", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "tabular_batch_inference.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -1931,24 +1758,24 @@ "Cache-Control": "no-cache", "Content-Length": "2538", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:23 GMT", + "Date": "Wed, 12 Oct 2022 12:05:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a044ab27787e4696b98a45af96e05fcb-a2bfde527612b2c0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d6d883570170c2e799ca0bb520850315-b807dd7204c0d71c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24baab3f-93a7-4ee1-98b1-af264d151c4e", - "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-correlation-request-id": "fbb0c05b-7d20-4121-bcee-bba3516a01bf", + "x-ms-ratelimit-remaining-subscription-writes": "1094", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234624Z:24baab3f-93a7-4ee1-98b1-af264d151c4e", - "x-request-time": "2.256" + "x-ms-routing-request-id": "JAPANEAST:20221012T120537Z:fbb0c05b-7d20-4121-bcee-bba3516a01bf", + "x-request-time": "0.551" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58ee2fca-ef19-46ab-973e-9370fd7cef0a", - "name": "58ee2fca-ef19-46ab-973e-9370fd7cef0a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/565ac135-8334-45bf-8dfd-62daf6f286ac", + "name": "565ac135-8334-45bf-8dfd-62daf6f286ac", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1958,7 +1785,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "58ee2fca-ef19-46ab-973e-9370fd7cef0a", + "version": "565ac135-8334-45bf-8dfd-62daf6f286ac", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -1981,7 +1808,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", "program_arguments": "--model ${{inputs.score_model}}", "entry_script": "tabular_batch_inference.py", @@ -2002,11 +1829,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:23.8193089\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:42:33.5404463\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:23.8193089\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:42:34.0369268\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -2018,32 +1845,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:23 GMT", + "Date": "Wed, 12 Oct 2022 12:05:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fab6fa7e46e3c158e19f0f78d167fc2e-c4531b8ce6c83d46-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-21d6a1f9636b3052df020f312e2d95c6-717092ac881b0bfa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ca4a656-4908-4424-8ab0-ce0a88b154d6", - "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-correlation-request-id": "e945053d-f4b5-4b4a-88df-c6ca0566fbb2", + "x-ms-ratelimit-remaining-subscription-reads": "11913", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234624Z:8ca4a656-4908-4424-8ab0-ce0a88b154d6", - "x-request-time": "0.111" + "x-ms-routing-request-id": "JAPANEAST:20221012T120538Z:e945053d-f4b5-4b4a-88df-c6ca0566fbb2", + "x-request-time": "0.112" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2058,17 +1881,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2082,29 +1905,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", + "Date": "Wed, 12 Oct 2022 12:05:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e9e722680ca54cbf6af4618f25ea6cdc-5639048616745c6b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c130756fe94345e3d7c958a7cbe49ecc-b737f511b152e4e0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95234a26-f288-430b-98f6-df33d8d54fea", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "b8826efb-29ee-4863-b709-ff5256793326", + "x-ms-ratelimit-remaining-subscription-writes": "1148", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234625Z:95234a26-f288-430b-98f6-df33d8d54fea", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221012T120539Z:b8826efb-29ee-4863-b709-ff5256793326", + "x-request-time": "0.242" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2112,297 +1933,68 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/iris-mltable/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/dataset/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/mnist-data/0.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "223", - "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAApklEQVR4nGNgGG4gZOf86TYqOCTv/QOCj8egYJUJiqRzkUfR4sf/HgKV/Hr6718PpnZBJz5nZ2dr0Tf/snDaH/z3ohAuObGX/4Nxamz8904Hl5z1z392ODW2/tvNikuO8\u002BwPK5wa6/5twynn/fuDJS454bv/luGSYz7977YyLkm1f/98ccnJP/hXzIhLsvXfPxNccraf8EhW/vt3WwO35HmcUYUFAADoRUgXjdCLBAAAAABJRU5ErkJggg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", - "ETag": "\u00220x8DAA274D230CE5E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "udv6YBRBC3o=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/mnist-data/1.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "255", - "Content-MD5": "4soERrkbkp\u002BoJQfBCzPTxw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAAxklEQVR4nGNgoDUoqV39//\u002B0WKxyK/\u002BCwS05HHJX\u002Bzb8/VuFKWfy6\u002B8lBR4GtnN/ezAlfX9fkgRSVT/\u002BOmIxVl4IRF78i1USDEq//z3GhUPO5/vf5/a4NDb8/TsBl9yGb3/n8\u002BCQk3z196UyLo3H/v7txSXn9\u002BPvXlyGCp/Ao7Ht79\u002B1uDQy/Pj7VxKXHEhSWwQIWBlYRURUp02bNpkLRRIMVvQvg7KqEZLr/iLAz\u002B/fV5aWWiKZW1ZdXQ3SNLu6WhOn5QMMADeOcLN/VWHoAAAAAElFTkSuQmCC", - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "4soERrkbkp\u002BoJQfBCzPTxw==", - "Date": "Thu, 29 Sep 2022 23:46:25 GMT", - "ETag": "\u00220x8DAA274D23317F5\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "GFNu8HXRRJ0=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/iris-mltable/MLTable", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "152", "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cGF0aHM6DQogIC0gZmlsZTogLi9pcmlzLmNzdg0KdHJhbnNmb3JtYXRpb25zOg0KICAtIHJlYWRfZGVsaW1pdGVkOg0KICAgICAgZGVsaW1pdGVyOiAiLCINCiAgICAgIGVuY29kaW5nOiBhc2NpaQ0KICAgICAgaGVhZGVyOiBhbGxfZmlsZXNfc2FtZV9oZWFkZXJzDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", - "ETag": "\u00220x8DAA274D2340236\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "DkIzWs5Nxl4=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/mnist-data/2.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "181", - "Content-MD5": "ZFD2PtrWo3KKbhKY8o6U0Q==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAAfElEQVR4nGNgGARA7V8ubsnwP0G4Jds/4pbT/TINt2TIP3vckqfuc\u002BOUU/h3A7fG\u002BH\u002BHcUv2/PPFKWf59iwHTsma/0txm7r6XyBOOYkX13FrrPg3H7fk9H99uCWf/HPCKWf7G49k77\u002BzzLjkuK7/q8SpkfXYBi7c7qEXAACSSyaQJMO2CwAAAABJRU5ErkJggg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "ZFD2PtrWo3KKbhKY8o6U0Q==", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", - "ETag": "\u00220x8DAA274D234504A\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", + "Date": "Wed, 12 Oct 2022 12:05:39 GMT", + "ETag": "\u00220x8DAAC46DC5BEBB0\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:42:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "JgB64NheC6Y=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/mnist-data/MLTable", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "84", - "Content-MD5": "MqcWyV2Ifb9O1CFXsVXNBg==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cGF0aHM6DQogIC0gZmlsZTogLi8wLnBuZw0KICAtIGZpbGU6IC4vMS5wbmcNCiAgLSBmaWxlOiAuLzIucG5nDQogIC0gZmlsZTogLi8zLnBuZw0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "MqcWyV2Ifb9O1CFXsVXNBg==", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", - "ETag": "\u00220x8DAA274D23958A2\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "0CgkdSBqsos=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/mnist-data/3.png", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "266", - "Content-MD5": "u9vq0WTYgE2NVJ8dagwc/w==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAAAAABXZoBIAAAA0UlEQVR4nGNgGGDAPe3vKXlckqq/f//NxiEnehS3ZN6\u002B30DJlbl22CT//gZJ/v59xxhTbtv/v0Dw6h6QwJCzvwvSOdnXruH370w0OYXnQBPvdHIxMMg/\u002B/25kBXDF3tEwMxcoDJldMmTchCm/AkMSYQzFE79/7sERbLn928YE9PYmzBJUXug057JYZecAPTQXVsGrJLb7gIlt6D589bfv56eT/7\u002BBQcTmhxDIThYIcRkdElguEAkn\u002B1V5kKXZLDrg0jiiE\u002BPdb/XunvIYZekGwAAcICQlxrnDN8AAAAASUVORK5CYII=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "u9vq0WTYgE2NVJ8dagwc/w==", - "Date": "Thu, 29 Sep 2022 23:46:25 GMT", - "ETag": "\u00220x8DAA274D23BA238\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "EysDbvmWNSg=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/iris-mltable/iris.csv", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "84107", - "Content-MD5": "6OYiRjb74HJ47HYxjw\u002BoYg==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "NS4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDMuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuNzY0MDUyMzQ1OTY3NjY0MDI2ZSswMCw0LjAwMTU3MjA4MzY3MjIzMjkzOGUtMDEsOS43ODczNzk4NDEwNTczOTIwMDVlLTAxLDIuMjQwODkzMTk5MjAxNDU3Nzk3ZSswMCwxLjg2NzU1Nzk5MDE0OTk2NzQ4NGUrMDAsLTkuNzcyNzc4Nzk4NzY0MTEwMTUzZS0wMSw5LjUwMDg4NDE3NTI1NTg5MzY4MmUtMDEsLTEuNTEzNTcyMDgyOTc2OTc4ODcyZS0wMSwtMS4wMzIxODg1MTc5MzU1Nzg0NDhlLTAxLDQuMTA1OTg1MDE5MzgzNzIzMjg5ZS0wMSwxLjQ0MDQzNTcxMTYwODc3OTg2N2UtMDEsMS40NTQyNzM1MDY5NjI5NzUwODJlKzAwLDcuNjEwMzc3MjUxNDY5OTM0MTU3ZS0wMSwxLjIxNjc1MDE2NDkyODI4NDEzOWUtMDEsNC40Mzg2MzIzMjc0NTQyNTY2MjFlLTAxLDMuMzM2NzQzMjczNzQyNjY4MzI1ZS0wMSwxLjQ5NDA3OTA3MzE1NzYwNjEzMGUrMDAsLTIuMDUxNTgyNjM3NjU4MDA4NzQ1ZS0wMSwzLjEzMDY3NzAxNjUwOTAxMzY0NGUtMDEsLTguNTQwOTU3MzkzMDE3MjQ3NzY3ZS0wMSwtMi41NTI5ODk4MTU4MzQwNzg2OTFlKzAwLDYuNTM2MTg1OTU0NDAzNjA2MDU4ZS0wMSw4LjY0NDM2MTk4ODU5NTA1NzMzM2UtMDEsLTcuNDIxNjUwMjA0MDY0NDE5NDQzZS0wMSwyLjI2OTc1NDYyMzk4NzYwNzYzM2UrMDAsLTEuNDU0MzY1Njc0NTk4NzY0NzU3ZSswMCw0LjU3NTg1MTczMDE0NDYwNjgwNWUtMDIsLTEuODcxODM4NTAwMjU4MzM1OTgwZS0wMSwxLjUzMjc3OTIxNDM1ODQ1NzU0MmUrMDAsMS40NjkzNTg3Njk5MDAyODUwMjJlKzAwLDEuNTQ5NDc0MjU2OTY5MTYzMDIyZS0wMSwzLjc4MTYyNTE5NjAyMTczNTYzNWUtMDEsLTguODc3ODU3NDc2MzAxMTI3NTM3ZS0wMSwtMS45ODA3OTY0NjgyMjM5MjY5NjVlKzAwLC0zLjQ3OTEyMTQ5MzI2MTUyNjA4OGUtMDEsMS41NjM0ODk2OTEwMzk4MDA1MTFlLTAxLDEuMjMwMjkwNjgwNzI3NzIwNzQyZSswMCwxLjIwMjM3OTg0ODc4NDQxMTI4N2UrMDAsLTMuODczMjY4MTc0MDc5NTIyNzMwZS0wMSwtMy4wMjMwMjc1MDU3NTMzNTU2NTllLTAxDQo0LjkwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTEuMDQ4NTUyOTY1MDY3MDkyNjEzZSswMCwtMS40MjAwMTc5MzcxNzg5NzUxNzZlKzAwLC0xLjcwNjI3MDE5MDYyNTAxMjYxN2UrMDAsMS45NTA3NzUzOTUyMzE3ODk2NjZlKzAwLC01LjA5NjUyMTgxNzUxNjUzNDk5MWUtMDEsLTQuMzgwNzQzMDE2MTExODYzNzg2ZS0wMSwtMS4yNTI3OTUzNjAwNDk5MjYxOTllKzAwLDcuNzc0OTAzNTU4MzE5MTAwNjI3ZS0wMSwtMS42MTM4OTc4NDc1NTc5NTE1MTVlKzAwLC0yLjEyNzQwMjgwMjEzOTY4NzA3N2UtMDEsLTguOTU0NjY1NjExOTM2NzU2MjUzZS0wMSwzLjg2OTAyNDk3ODU5MjYyMDA2OGUtMDEsLTUuMTA4MDUxMzc1Njg4NzMwMjQ1ZS0wMSwtMS4xODA2MzIxODQxMjI0MTIxMDllKzAwLC0yLjgxODIyMjgzMzg2NTQ4NjgxOGUtMDIsNC4yODMzMTg3MDUzMDQxNzY1NzdlLTAxLDYuNjUxNzIyMjM4MzE2Nzg4NzE2ZS0wMiwzLjAyNDcxODk3NzM5NzgxMzkyNGUtMDEsLTYuMzQzMjIwOTM2ODA5NjM1OTQ2ZS0wMSwtMy42Mjc0MTE2NTk4NzEzODEyNTVlLTAxLC02LjcyNDYwNDQ3Nzc1OTUxMDQyNGUtMDEsLTMuNTk1NTMxNjE1NDA1NDEyODg0ZS0wMSwtOC4xMzE0NjI4MjA0NDQ1NDA0OTZlLTAxLC0xLjcyNjI4MjYwMjMzMTY3Njg1MmUrMDAsMS43NzQyNjE0MjI1Mzc1MjgzMzJlLTAxLC00LjAxNzgwOTM2MjA4MjYxODg1MWUtMDEsLTEuNjMwMTk4MzQ2OTY2MDQ0NTk4ZSswMCw0LjYyNzgyMjU1NTI1Nzc0MTc3N2UtMDEsLTkuMDcyOTgzNjQzODMyNDIxODQxZS0wMSw1LjE5NDUzOTU3OTYxMzg5NTE3NWUtMDIsNy4yOTA5MDU2MjE3NzUzNjg3MTdlLTAxLDEuMjg5ODI5MTA3NTc0MTA2NjgxZS0wMSwxLjEzOTQwMDY4NDU0MzMwMDY3OWUrMDAsLTEuMjM0ODI1ODIwMzUzNjUyNjI2ZSswMCw0LjAyMzQxNjQxMTc3NTQ5MDAzMWUtMDEsLTYuODQ4MTAwOTA5NDAzMTMxOTg2ZS0wMSwtOC43MDc5NzE0OTE4MTg4MTc4MDBlLTAxLC01Ljc4ODQ5NjY0NzY0NDE1NDYxM2UtMDEsLTMuMTE1NTI1MzIxMjczNzI2NjExZS0wMSw1LjYxNjUzNDIyMjk3NDU0MzgwMGUtMDINCjQuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwzLjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtMS4xNjUxNDk4NDA3ODMzNTY0ODNlKzAwLDkuMDA4MjY0ODY5NTQxODcxMDAxZS0wMSw0LjY1NjYyNDM5NzMwNDU5ODQyOGUtMDEsLTEuNTM2MjQzNjg2Mjc3MjIzNzQxZSswMCwxLjQ4ODI1MjE5Mzc5NTU5OTY5OGUrMDAsMS44OTU4ODkxNzYwMzA1ODMxNTZlKzAwLDEuMTc4Nzc5NTcxMTU5NjUwNzA4ZSswMCwtMS43OTkyNDgzNTgxMjM1MDkxMzllLTAxLC0xLjA3MDc1MjYyMTUxMDU0MjUxM2UrMDAsMS4wNTQ0NTE3MjY5MzExMzY2NDZlKzAwLC00LjAzMTc2OTQ2OTczMTc5NjI4NWUtMDEsMS4yMjI0NDUwNzAzODI0Mjc0NDZlKzAwLDIuMDgyNzQ5NzgwNzY4NjAyOTU0ZS0wMSw5Ljc2NjM5MDM2NDgzNzEyNzUyNWUtMDEsMy41NjM2NjM5NzE3NDQwMTg4MzJlLTAxLDcuMDY1NzMxNjgxOTE5NDgxNTMzZS0wMSwxLjA1MDAwMjA3MjA4MjA0Nzg0OWUtMDIsMS43ODU4NzA0OTM5MDU4MzUxODhlKzAwLDEuMjY5MTIwOTI3MDM2MTk5MTY1ZS0wMSw0LjAxOTg5MzYzNDQ0NzAxNjUyOGUtMDEsMS44ODMxNTA2OTcwNTYyNTQzNzVlKzAwLC0xLjM0Nzc1OTA2MTE0MjQ0NjM2OGUrMDAsLTEuMjcwNDg0OTk4NDg1NzMzNTk2ZSswMCw5LjY5Mzk2NzA4MTU4MDExMTU1NmUtMDEsLTEuMTczMTIzNDA1MTE0MTU5OTEyZSswMCwxLjk0MzYyMTE4NTY0OTI5MjY0OWUrMDAsLTQuMTM2MTg5ODA3NTk3NDczNDU2ZS0wMSwtNy40NzQ1NDgxMTQ0MDc1Nzc2MDRlLTAxLDEuOTIyOTQyMDI2NDgwMzg0NzAzZSswMCwxLjQ4MDUxNDc5MTQzNDQyNDMyN2UrMDAsMS44Njc1NTg5NjA0MjY1Njk4ODFlKzAwLDkuMDYwNDQ2NTgyNzUzODUyNzI5ZS0wMSwtOC42MTIyNTY4NTA1NDcwMjUzODllLTAxLDEuOTEwMDY0OTUzMDk5MDMzNjgwZSswMCwtMi42ODAwMzM3MDk1MTM4MDM4MTllLTAxLDguMDI0NTYzOTU3OTYzOTUxNjEwZS0wMSw5LjQ3MjUxOTY3NzczNzQ3OTgyNmUtMDEsLTEuNTUwMTAwOTMwOTA4MzQxODkwZS0wMSw2LjE0MDc5MzcwMzQ2MDgwMjg4OGUtMDEsOS4yMjIwNjY3MTU2NjUyNjgwMzNlLTAxDQo0LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4xMDAwMDAwMDAwMDAwMDAwODllKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsMy43NjQyNTUzMTE1NTYyOTQzMzdlLTAxLC0xLjA5OTQwMDc5MDU4NDE5NDQ4N2UrMDAsMi45ODIzODE3NDIwNjA1NTk3MjZlLTAxLDEuMzI2Mzg1ODk2Njg3MDMwMzMwZSswMCwtNi45NDU2Nzg1OTczMTM2NTQ3NzhlLTAxLC0xLjQ5NjM0NTQwMzI3NjcwNzYyMGUtMDEsLTQuMzUxNTM1NTE3MjE2Mzc0NDM4ZS0wMSwxLjg0OTI2MzcyODQ3OTM0MTg0MGUrMDAsNi43MjI5NDc1NzAxMjQzNTQ2MjJlLTAxLDQuMDc0NjE4MzYyNDExMTA0MzExZS0wMSwtNy42OTkxNjA3NDQ0NTMxNjQwMDdlLTAxLDUuMzkyNDkxOTEyOTE4MTcyNTM2ZS0wMSwtNi43NDMzMjY2MDY1NzM3NjA3MDZlLTAxLDMuMTgzMDU1ODI3NDM1MTE4MjUxZS0wMiwtNi4zNTg0NjA3ODM3ODg4MDk2MzRlLTAxLDYuNzY0MzMyOTQ5NDY0OTk3MzAyZS0wMSw1Ljc2NTkwODE2NjE0OTQwOTM3NWUtMDEsLTIuMDgyOTg3NTU1Nzc5OTQ4NzYzZS0wMSwzLjk2MDA2NzEyNjYxNjQ1Mjc3MWUtMDEsLTEuMDkzMDYxNTA4NzMwNTA1NzgyZSswMCwtMS40OTEyNTc1OTI3MDU2MDU1MzllKzAwLDQuMzkzOTE3MDEyNjQ1MzY5MTU4ZS0wMSwxLjY2NjczNDk1MzcyNTI5MDQwMmUtMDEsNi4zNTAzMTQzNjg5MjEwNjM5MzRlLTAxLDIuMzgzMTQ0Nzc0ODYzOTQyMDUwZSswMCw5LjQ0NDc5NDg2OTkwNDEzODQxMmUtMDEsLTkuMTI4MjIyMjU0NDQxNTg1ODU5ZS0wMSwxLjExNzAxNjI4ODA5NTg1Mjk2MWUrMDAsLTEuMzE1OTA3NDEwNTExNTIxMTU4ZSswMCwtNC42MTU4NDYwNDgxNDcwODk3NjRlLTAxLC02LjgyNDE2MDUzMjQ2MzEyMzU0MWUtMDIsMS43MTMzNDI3MjE2NDkzNjY2MjllKzAwLC03LjQ0NzU0ODIyMDQ4NDM5OTAxN2UtMDEsLTguMjY0Mzg1Mzg2NTkwMTQzOTg5ZS0wMSwtOS44NDUyNTI0NDI1NDMyMzAwMDllLTAyLC02LjYzNDc4Mjg2MzYyMTA3MzcyM2UtMDEsMS4xMjY2MzU5MjIxMDY1MDY5ODJlKzAwLC0xLjA3OTkzMTUwODM2MzQyMzMzMWUrMDAsLTEuMTQ3NDY4NjUyNDExMTAyNDA4ZSswMCwtNC4zNzgyMDA0NDc0NDQzNDAzMzdlLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy42MDAwMDAwMDAwMDAwMDAwODllKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTQuOTgwMzI0NTA2OTIzMDQ4OTU1ZS0wMSwxLjkyOTUzMjA1MzgxNjk4NTc4MmUrMDAsOS40OTQyMDgwNjkyNTc2MDgwNzRlLTAxLDguNzU1MTI0MTM4NTE5MDg5NDk0ZS0wMiwtMS4yMjU0MzU1MTg4MzAxNjc5OTFlKzAwLDguNDQzNjI5NzY0MDE1NDcxMTYyZS0wMSwtMS4wMDAyMTUzNDczODk1NjQ3NDZlKzAwLC0xLjU0NDc3MTA5Njc3NzYxMTU5NmUrMDAsMS4xODgwMjk3OTIzNTIzMDE3NzJlKzAwLDMuMTY5NDI2MTE5MjQ4NDk2MjY1ZS0wMSw5LjIwODU4ODIzNzgwODE4OTU4MGUtMDEsMy4xODcyNzY1Mjk0MzAyMTE4OTFlLTAxLDguNTY4MzA2MTE5MDI2OTExNjM4ZS0wMSwtNi41MTAyNTU5MzMwMDE0Njg2NTNlLTAxLC0xLjAzNDI0Mjg0MTc4NDQ2NDY4NGUrMDAsNi44MTU5NDUxODI4MTYyNjk4MjFlLTAxLC04LjAzNDA5NjY0MTczODQxMDc2MGUtMDEsLTYuODk1NDk3Nzc3NTAyMDA1NDMyZS0wMSwtNC41NTUzMjUwMzUxNzM0MzE0NThlLTAxLDEuNzQ3OTE1OTAyNTA1NjcyODU4ZS0wMiwtMy41Mzk5MzkxMTI1MzQ4Mzk1MDVlLTAxLC0xLjM3NDk1MTI5MzQxODAxODgwNWUrMDAsLTYuNDM2MTg0MDI4MzI4OTA1MTI3ZS0wMSwtMi4yMjM0MDMxNTIyMjQ0MjY2MzhlKzAwLDYuMjUyMzE0NTEwMjcxODc0NjgxZS0wMSwtMS42MDIwNTc2NTU2MDY3NDc2MjFlKzAwLC0xLjEwNDM4MzMzOTQyODQ1MDU3MmUrMDAsNS4yMTY1MDc5MjYwOTc0NDA0OTBlLTAyLC03LjM5NTYyOTk2MzkxMzEzMjg3NmUtMDEsMS41NDMwMTQ1OTU0MDY3MzU4MDFlKzAwLC0xLjI5Mjg1NjkwOTcyMzQ0ODU3N2UrMDAsMi42NzA1MDg2OTM0OTE4MjkyODhlLTAxLC0zLjkyODI4MTgyMjc0OTU2MDI4MWUtMDIsLTEuMTY4MDkzNDk3NzQxMTk3NDE3ZSswMCw1LjIzMjc2NjYwNTMxNzUzNzAxMmUtMDEsLTEuNzE1NDYzMzEyMjIyNDgxMDUyZS0wMSw3LjcxNzkwNTUxMjEzNjY3MzUyOWUtMDEsOC4yMzUwNDE1Mzk2MzczMTQ0NDVlLTAxLDIuMTYzMjM1OTQ5MjgwNjg5ODUyZSswMCwxLjMzNjUyNzk0OTQzNjM5MTk3MWUrMDANCjUuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS42OTk5OTk5OTk5OTk5OTk5NTZlKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwtMy42OTE4MTgzNzk0MjQ0MzU4MDNlLTAxLC0yLjM5Mzc5MTc3NTc1OTI2Mzg4NWUtMDEsMS4wOTk2NTk1OTU4ODcxMTMxNTBlKzAwLDYuNTUyNjM3MzA3MjI1OTc4MDM2ZS0wMSw2LjQwMTMxNTI2MDk3NTkyMDUxOGUtMDEsLTEuNjE2OTU2MDQ0MzEwODM0Mzk1ZSswMCwtMi40MzI2MTI0Mzk4OTM1NjM1NThlLTAyLC03LjM4MDMwOTA5MjA1Njg4NzAxMGUtMDEsMi43OTkyNDU5OTA0MzIzODI0MjVlLTAxLC05LjgxNTAzODk2NDI5NTc5NDE0NGUtMDIsOS4xMDE3ODkwODA5MjU5MTk0MjhlLTAxLDMuMTcyMTgyMTUxOTEzMDIwNTU0ZS0wMSw3Ljg2MzI3OTYyMTA4OTc2MTUyOWUtMDEsLTQuNjY0MTkwOTY3MzU5NDMwNjE3ZS0wMSwtOS40NDQ0NjI1NTkxODI1MDM3NjllLTAxLC00LjEwMDQ5NjkzMjAyNTQ4NDcwOWUtMDEsLTEuNzAyMDQxMzg2MTQ0MDU5NDA3ZS0wMiwzLjc5MTUxNzM1NTU1MDgxODAzNmUtMDEsMi4yNTkzMDg5NTA2OTA4NTIxMzZlKzAwLC00LjIyNTcxNTE2NjA2NDI2OTMwN2UtMDIsLTkuNTU5NDUwMDA0OTI3NzY5NzUxZS0wMSwtMy40NTk4MTc3NTY5OTM4NjQyOTFlLTAxLC00LjYzNTk1OTc0NjQ2MDk0MTk5OWUtMDEsNC44MTQ4MTQ3Mzc3MzQ2MjE3NjNlLTAxLC0xLjU0MDc5NzAxNDQ0NDYyNDgwMmUrMDAsNi4zMjYxOTk0MjAwMzMxNzExNTBlLTAyLDEuNTY1MDY1Mzc5NjUzNzU1ODYyZS0wMSwyLjMyMTgxMDM2MjAwMjc1Nzc1NWUtMDEsLTUuOTczMTYwNjg5NjUzNjI3MTIwZS0wMSwtMi4zNzkyMTcyOTczNjAwNzAwMzhlLTAxLC0xLjQyNDA2MDkwODk4MjUzMTU3MGUrMDAsLTQuOTMzMTk4ODMzNjIxOTQwNjcxZS0wMSwtNS40Mjg2MTQ3NjAxNjcxNzc0NzhlLTAxLDQuMTYwNTAwNDYyNjE0MjU0OTkxZS0wMSwtMS4xNTYxODI0MzE4MjE5MTI3MTVlKzAwLDcuODExOTgxMDE3MDk5OTMzNzU1ZS0wMSwxLjQ5NDQ4NDU0NDQ5MTM2ODgwNWUrMDAsLTIuMDY5OTg1MDI1MDEzNTMyNTQyZSswMCw0LjI2MjU4NzMwNzc4MTAwOTQ3MWUtMDEsNi43NjkwODAzNTAzMDI0NTU0NzNlLTAxDQo0LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsLTYuMzc0MzcwMjU1NTIyMjkwMzA3ZS0wMSwtMy45NzI3MTgxNDMyODc5NzY1NjdlLTAxLC0xLjMyODgwNTc3NTg2OTU1NjIyN2UtMDEsLTIuOTc3OTA4Nzk0MDE3MjgzMjU2ZS0wMSwtMy4wOTAxMjk2OTA0NzEyMjIyMTJlLTAxLC0xLjY3NjAwMzgwNjMyOTk3NjY5N2UrMDAsMS4xNTIzMzE1NjQ3ODMxMjAwNDRlKzAwLDEuMDc5NjE4NTkyMDM2ODIxMDkwZSswMCwtOC4xMzM2NDI1OTIwNDIwMjg1NTJlLTAxLC0xLjQ2NjQyNDMyNzgwMjUxMzk3MmUrMDAsNS4yMTA2NDg3NjQ1Mjc1ODU2MzBlLTAxLC01Ljc1Nzg3OTY5ODEzMDY2MTI1MGUtMDEsMS40MTk1MzE2MzMyMDc3OTY3MzllLTAxLC0zLjE5MzI4NDE3MTQ1MDk1MTg5MmUtMDEsNi45MTUzODc1MTA3MDE4NjU4NTllLTAxLDYuOTQ3NDkxNDM2NTYwMDU5Mjk3ZS0wMSwtNy4yNTU5NzM3ODQ2MzU4NDI5NzFlLTAxLC0xLjM4MzM2Mzk1NTM5NTA1NTQxMWUrMDAsLTEuNTgyOTM4Mzk3MzM1MDgxOTA0ZSswMCw2LjEwMzc5Mzc5MTA3MjA1MTg4OWUtMDEsLTEuMTg4ODU5MjU3Nzg0MDI4OTAwZSswMCwtNS4wNjgxNjM1NDI5ODY4NzU0MzZlLTAxLC01Ljk2MzE0MDM4NDUwNTA4MTIxNWUtMDEsLTUuMjU2NzI5NjI2OTU0NjI4NzUzZS0wMiwtMS45MzYyNzk4MDU4NDY1MDY5NDFlKzAwLDEuODg3Nzg1OTY3OTM4Mjg1NTE0ZS0wMSw1LjIzODkxMDIzODM0MjA1NjA0N2UtMDEsOC44NDIyMDg3MDQ0NjYxNDA5ODllLTAyLC0zLjEwODg2MTcxNjk4NDcxNzEzOGUtMDEsOS43NDAwMTY2MjY4NzgzNDA4NTVlLTAyLDMuOTkwNDYzNDU2NDAxMzAxOTU2ZS0wMSwtMi43NzI1OTI3NTY0MjY2NTAxNTFlKzAwLDEuOTU1OTEyMzA4MjUwNjk0MTc2ZSswMCwzLjkwMDkzMzIyNjg3OTI2NDU4MWUtMDEsLTYuNTI0MDg1ODIzODcwMjAwNDE4ZS0wMSwtMy45MDk1MzM3NTE4NzYwMTA5MzJlLTAxLDQuOTM3NDE3NzczNDkxODg0NDg3ZS0wMSwtMS4xNjEwMzkzOTAzNDM2NjUyNjdlLTAxLC0yLjAzMDY4NDQ2Nzc4MTQ5NDM2MmUrMDAsMi4wNjQ0OTI4NjEzNTkzMTk0MjBlKzAwDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTEuMTA1NDA2NTcyMzI0NzI2MTExZS0wMSwxLjAyMDE3MjcxMTcxNTc5OTcwN2UrMDAsLTYuOTIwNDk4NDc3ODQzOTExNTg5ZS0wMSwxLjUzNjM3NzA1NDI0NTc5NzczNWUrMDAsMi44NjM0MzY4ODg5MjI3OTU2ODdlLTAxLDYuMDg4NDM4MzQ0NzU0NTA3NjI1ZS0wMSwtMS4wNDUyNTMzNjYxNDY5NTQ3NDNlKzAwLDEuMjExMTQ1Mjg5NjgyNzAwODU0ZSswMCw2Ljg5ODE4MTY0NTM0Nzg4MzkxN2UtMDEsMS4zMDE4NDYyMjk1NjQ5OTg0MDNlKzAwLC02LjI4MDg3NTU5NjQxNTc4OTE4NmUtMDEsLTQuODEwMjcxMTg0NjA3ODc3MTcxZS0wMSwyLjMwMzkxNjY5NzY4Mzk0MTgwNmUrMDAsLTEuMDYwMDE1ODIyNzIxNTQ3MjYzZSswMCwtMS4zNTk0OTcwMDY3ODMyMDgyMjhlLTAxLDEuMTM2ODkxMzYyNjAyNjk1Mjk5ZSswMCw5Ljc3MjQ5Njc3MTQ4NTU2MDExOWUtMDIsNS44Mjk1MzY3OTc1MzI5MzU5NjZlLTAxLC0zLjk5NDQ5MDI5MjYyODc1MTc3MWUtMDEsMy43MDA1NTg4Nzg0NzUxODc0OTZlLTAxLC0xLjMwNjUyNjg1MTczNTMxNjU3NGUrMDAsMS42NTgxMzA2Nzk2MTgxODgwNTNlKzAwLC0xLjE4MTY0MDQ1MTI4NTY5NzYxM2UtMDEsLTYuODAxNzgyMDM5OTY4NTAzNjEzZS0wMSw2LjY2MzgzMDgyMDMxOTE0MzIwMGUtMDEsLTQuNjA3MTk3ODczODg1NTMyOTI0ZS0wMSwtMS4zMzQyNTg0NzE0MDI3NTM0NDNlKzAwLC0xLjM0NjcxNzUwNTc5NzU1NTMzNmUrMDAsNi45Mzc3MzE1MjY5MDEzMjUxMDhlLTAxLC0xLjU5NTczNDM4MTQ2MjY2ODk5NGUtMDEsLTEuMzM3MDE1NTk2Njg0MzkxNjI3ZS0wMSwxLjA3Nzc0MzgwNTk3NjI2MjczNmUrMDAsLTEuMTI2ODI1ODA4NzU2NzQzNTQxZSswMCwtNy4zMDY3Nzc1Mjg2NDgyNDgzNjVlLTAxLC0zLjg0ODc5ODA5MTgxMjc1NDU2M2UtMDEsOS40MzUxNTg5MzE3MDc0MDA1NTRlLTAyLC00LjIxNzE0NTEyOTA1Nzg5MzQ2MGUtMDIsLTIuODY4ODcxOTIzODk5MDc2MTkzZS0wMSwtNi4xNjI2NDAyMDk1NjQ3NDAzNDZlLTAyLC0xLjA3MzA1Mjc2MjkxMTc0Njg2NmUtMDENCjQuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwyLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtNy4xOTYwNDM4ODU1MTc5Mjg3MjllLTAxLC04LjEyOTkyOTg4NTU0MDc3MzExNmUtMDEsMi43NDUxNjM1NzcyMzkzOTUwODFlLTAxLC04LjkwOTE1MDgyOTk1NTI3OTA3MmUtMDEsLTEuMTU3MzU1MjU5MTkwODUzNTgwZSswMCwtMy4xMjI5MjI1MTEyNTY5MzMwOThlLTAxLC0xLjU3NjY3MDE2MTYzODE1ODk4NWUtMDEsMi4yNTY3MjM0OTcyOTgyMDkzMTNlKzAwLC03LjA0NzAwMjc1ODU2MjMzNzM3N2UtMDEsOS40MzI2MDcyNDk2OTQ5NDc1NzFlLTAxLDcuNDcxODgzMzQyMDQ2MzE4MjEwZS0wMSwtMS4xODg5NDQ5NTUyMDM3MzYxMDllKzAwLDcuNzMyNTI5Nzc0MDI1OTk2ODM4ZS0wMSwtMS4xODM4ODA2NDAxOTMzMTc3MzVlKzAwLC0yLjY1OTE3MjIzNzk5Njc0MDg1MWUrMDAsNi4wNjMxOTUyNDM1OTM4MDc0NjBlLTAxLC0xLjc1NTg5MDU4MzQzNzcxOTQyMWUrMDAsNC41MDkzNDQ2MTgwNTkxNDg0MzVlLTAxLC02Ljg0MDEwODk3NzM3MjE2NTcyMmUtMDEsMS42NTk1NTA3OTYxODk4NzIxMTNlKzAwLDEuMDY4NTA5Mzk5MzE2MDA5MDc5ZSswMCwtNC41MzM4NTgwMzg1MTM4NzY1ODdlLTAxLC02Ljg3ODM3NjExMDI4NjgyMzQ5N2UtMDEsLTEuMjE0MDc3NDAzMDk0MTIwNjAwZSswMCwtNC40MDkyMjYzMjI5MjU5MTM3NjZlLTAxLC0yLjgwMzU1NDk1MTg0NTA5MDg0OGUtMDEsLTMuNjQ2OTM1NDQzOTE2ODUzODcwZS0wMSwxLjU2NzAzODU1MjcyMzYzOTY3N2UtMDEsNS43ODUyMTQ5NzcyODg3ODM5NzdlLTAxLDMuNDk2NTQ0NTY5OTMxNzM5ODk5ZS0wMSwtNy42NDE0MzkyMzkwNjQ0MzAzNDRlLTAxLC0xLjQzNzc5MTQ3MzgwMTU3ODQ1N2UrMDAsMS4zNjQ1MzE4NDgxMDI0NzEzMDFlKzAwLC02Ljg5NDQ5MTg0NTQ5OTM3NjQzN2UtMDEsLTYuNTIyOTM1OTk5MzUwMTkxMTk0ZS0wMSwtNS4yMTE4OTMxMjMwMTExMDg3NDJlLTAxLC0xLjg0MzA2OTU1MDE1NjY0ODUyOGUrMDAsLTQuNzc5NzQwMDQwNDA0ODY2Nzc0ZS0wMSwtNC43OTY1NTgxNDAwNzk0NzY1NjJlLTAxLDYuMjAzNTgyOTgzNDM1MTI1MjY0ZS0wMQ0KNC45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMTAwMDAwMDAwMDAwMDAwMDg5ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwNTZlLTAxLDYuOTg0NTcxNDkxMDczMzYwMjgzZS0wMSwzLjc3MDg4OTA4NjI2OTM0MDEyMWUtMDMsOS4zMTg0ODM3NDExNDMwMzY1NjllLTAxLDMuMzk5NjQ5ODM4MDEyNjE5OTk2ZS0wMSwtMS41NjgyMTExNjAyNTU0NzY4NTVlLTAyLDEuNjA5MjgxNjgyOTgyMjI5ODQ0ZS0wMSwtMS45MDY1MzQ5MzU4MTM5OTM1MjVlLTAxLC0zLjk0ODQ5NTE0MDMzNDUwMzEwNmUtMDEsLTIuNjc3MzM1MzY4OTM5NjY0NTA2ZS0wMSwtMS4xMjgwMTEzMzE0NzAwMDY4NzNlKzAwLDIuODA0NDE3MDUzMTYyOTU5NzUwZS0wMSwtOS45MzEyMzYxMDkyOTU4MDY4MDJlLTAxLDguNDE2MzEyNjQwNzM2MzY0MjAzZS0wMSwtMi40OTQ1ODU4MDE2MDk0ODg1MDdlLTAxLDQuOTQ5NDk4MTY1MDA5MDczODU4ZS0wMiw0LjkzODM2Nzc2MjgwOTU2MzQ2NmUtMDEsNi40MzMxNDQ2NTA2MjkyNzg4NzFlLTAxLC0xLjU3MDYyMzQwODYzMzQ1MjczM2UrMDAsLTIuMDY5MDM2NzYxNjM5NzE3MzM3ZS0wMSw4LjgwMTc4OTEyMDgwNzgyMjQ5N2UtMDEsLTEuNjk4MTA1ODE5NDMyMjU0NDcxZSswMCwzLjg3MjgwNDc1Mzk1MDYzMzgzOGUtMDEsLTIuMjU1NTY0MjI5NDAyMTg5MzY5ZSswMCwtMS4wMjI1MDY4NDM2MzU2MDM1MTNlKzAwLDMuODYzMDU1MTg0MDE4ODA5ODczZS0wMiwtMS42NTY3MTUxMDIzMjE5NTM3MzZlKzAwLC05Ljg1NTEwNzM3Njg0MTUwNjUwNmUtMDEsLTEuNDcxODM1MDA3NDYzNTg2ODY0ZSswMCwxLjY0ODEzNDkzMjIwNzU1OTU3OGUrMDAsMS42NDIyNzc1NTQ4NzMzMzk1NDBlLTAxLDUuNjcyOTAyNzc4NTI2NjkzODkwZS0wMSwtMi4yMjY3NTEwMDUxNTE1NDQ4OTNlLTAxLC0zLjUzNDMxNzQ4NzU3MTk5MDcxMmUtMDEsLTEuNjE2NDc0MTg4NjUxMDMyNTQwZSswMCwtMi45MTgzNzM2Mjc0Nzg2MjgxNjNlLTAxLC03LjYxNDkyMjExODExNjIzMjk4NWUtMDEsOC41NzkyMzkyNDI5MjMzNjMyNjJlLTAxLDEuMTQxMTAxODY2NjU3NTczNDA1ZSswMCwxLjQ2NjU3ODcxNTU3NDE3NzYyN2UrMDAsOC41MjU1MTkzOTQ2MTIzMTk3NzllLTAxDQo1LjQwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTUuOTg2NTM5MzY5MjI5ODYwNzQxZS0wMSwtMS4xMTU4OTY5ODU5NjAzOTQ0MzllKzAwLDcuNjY2NjMxODE2NDUwODYwNjcwZS0wMSwzLjU2MjkyODE3NDcyMjg4OTE0MWUtMDEsLTEuNzY4NTM4NDUwNjc3MDMwNzQ5ZSswMCwzLjU1NDgxNzkyNzQzNzY5MDY1MGUtMDEsOC4xNDUxOTgyMjQ4Nzg2NjM2MjllLTAxLDUuODkyNTU4OTE4MTYyOTk2MTUxZS0wMiwtMS44NTA1MzY3MTAwOTM0MTUzMDVlLTAxLC04LjA3NjQ4NDg3NjE2MzU1NjU5MmUtMDEsLTEuNDQ2NTM0Njk5NTYzMzg3ODcxZSswMCw4LjAwMjk3OTQ5MzQwMDI3NTE0NmUtMDEsLTMuMDkxMTQ0NDQ3NzE3MDg3OTYyZS0wMSwtMi4zMzQ2NjY2MTU0MzY5MjcyMTdlLTAxLDEuNzMyNzIxMTg2OTE5MTMzMjM4ZSswMCw2Ljg0NTAxMTA2ODU5MTkwNDExM2UtMDEsMy43MDgyNTAwMTI4MTEwMjA3MzVlLTAxLDEuNDIwNjE4MDUxODcyMzU2NTY5ZS0wMSwxLjUxOTk5NDg2MDc2NTc3MjcyNmUrMDAsMS43MTk1ODkzMDc0MTYxOTQ1MzVlKzAwLDkuMjk1MDUxMTE0Nzk1MjgwNzg5ZS0wMSw1LjgyMjI0NTkxMzk3OTI0MjYyNmUtMDEsLTIuMDk0NjAzMDcxMjA2MTQ0NzUxZSswMCwxLjIzNzIxOTE0MjMzNTA2NTc3NWUtMDEsLTEuMzAxMDY5NTQxOTM3MDM5OTQyZS0wMSw5LjM5NTMyMjkzODU1Njg3MTUwNmUtMDIsOS40MzA0NjA4NzMyMjUxNzgyMzFlLTAxLC0yLjczOTY3NzE2NzE4OTU1NjMzOWUrMDAsLTUuNjkzMTIwNTM0NzAxODUwOTc3ZS0wMSwyLjY5OTA0MzU0OTQwNzYxMzcwN2UtMDEsLTQuNjY4NDU1NDYwNTI3NjI1MTY3ZS0wMSwtMS40MTY5MDYxMTMxMjYyNTk0NzBlKzAwLDguNjg5NjM0ODY4OTY3OTUzNjc0ZS0wMSwyLjc2ODcxOTA1ODQ2MTI4MDMwMmUtMDEsLTkuNzExMDQ1NzA0NDQ0ODQ2MTYxZS0wMSwzLjE0ODE3MjA0NTE1ODIzNzg5N2UtMDEsOC4yMTU4NTcxMjA0OTc5NTgwMjJlLTAxLDUuMjkyNjQ2Mjk5MzYwODUzNjIzZS0wMyw4LjAwNTY0ODAzNDMwOTk2Nzg1M2UtMDEsNy44MjYwMTc1MTYxNjYxMzUyMjRlLTAyDQo0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuNjAwMDAwMDAwMDAwMDAwMDg5ZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTMuOTUyMjg5ODI2NTQzNTQzNTQ5ZS0wMSwtMS4xNTk0MjA1MTYzOTk5MTI5NDhlKzAwLC04LjU5MzA3NjY5NzE2MTI3MjY0OGUtMDIsMS45NDI5MjkzODA0NTc3MTY2MjZlLTAxLDguNzU4MzI3NjE1ODczMzA5MjEzZS0wMSwtMS4xNTEwNzQ2ODQ4NzIyNjcyMThlLTAxLDQuNTc0MTU2MDYyMjA5OTA4MTEzZS0wMSwtOS42NDYxMjAxMzczMzcyODQwMTdlLTAxLC03LjgyNjI5MTU1ODI3NTI1MTI0OGUtMDEsLTEuMTAzODkyOTkwMjY4ODc3NTIyZS0wMSwtMS4wNTQ2Mjg0NjM5ODUwMTM4NjRlKzAwLDguMjAyNDc4MzczMjQ2ODEyMDYwZS0wMSw0LjYzMTMwMzI5MzE4NjA3MDkyNGUtMDEsMi43OTA5NTc2NDM5MjQ1MzQyNzBlLTAxLDMuMzg5MDQxMjUyMTU5NDQ1NDA1ZS0wMSwyLjAyMTA0MzU2MTQ4NDc5NzQ2OGUrMDAsLTQuNjg4NjQxODc5NjY3OTU2MzE0ZS0wMSwtMi4yMDE0NDEyODU1MDA1NTc4NDNlKzAwLDEuOTkzMDAxOTY4OTY0NjUxOTI3ZS0wMSwtNS4wNjAzNTQwOTYxNjY1ODk1MTZlLTAyLC01LjE3NTE5MDQyNTEwNDAzMjU5OWUtMDEsLTkuNzg4Mjk4NTkzNTg3Njk4NzE1ZS0wMSwtNC4zOTE4OTUyMTgwMjE0NzkzMDhlLTAxLDEuODEzMzg0MjkyMTc4MjEyODQyZS0wMSwtNS4wMjgxNjcwMDY0MjUzODI1MDFlLTAxLDIuNDEyNDUzNjc5NTQzNzQ4NTY0ZSswMCwtOS42MDUwNDM4MTYzMzE0Nzk5NjdlLTAxLC03LjkzMTE3MzYyNzA3NjcxNjM1OWUtMDEsLTIuMjg4NjIwMDQwMDE0NTI4NDU2ZSswMCwyLjUxNDg0NDE1MDIxNTM3MDExMWUtMDEsLTIuMDE2NDA2NjI3Nzk5NzYwMDk4ZSswMCwtNS4zOTQ1NDYzMzM3NDUwMTM5MTFlLTAxLC0yLjc1NjcwNTM0NTYwNTU2OTU2OGUtMDEsLTcuMDk3Mjc5NjU4NDY4ODgyNDI0ZS0wMSwxLjczODg3MjY3NzQ1NDUxMDkwN2UrMDAsOS45NDM5NDM5MTMxNTQ5ODg5MzRlLTAxLDEuMzE5MTM2ODc2MzAxNTc1NjEyZSswMCwtOC44MjQxODgxODU0OTkxODU0ODhlLTAxLDEuMTI4NTk0MDY0NTE0NTY4NDUxZSswMCw0Ljk2MDAwOTQ2MzQzOTYyMTkwMmUtMDENCjQuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwzLjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSw3LjcxNDA1OTQ4Njc2ODQ1NTMyMGUtMDEsMS4wMjk0Mzg4Mjg3ODI3NjcxNTdlKzAwLC05LjA4NzYzMjQ1OTU5MDUzMTEyMGUtMDEsLTQuMjQzMTc2MjA5Nzc5MDE0ODg1ZS0wMSw4LjYyNTk2MDExMzI4NDUxMDk1NWUtMDEsLTIuNjU1NjE5MDkyOTc0OTMyODE2ZSswMCwxLjUxMzMyODA4MjU3MzIwNTE2OWUrMDAsNS41MzEzMjA2NDIwNzU4Mzk4NDRlLTAxLC00LjU3MDM5NjA2NjAyMzQ4NTQ3MWUtMDIsMi4yMDUwNzY1NTc1NzE3MzI5MzFlLTAxLC0xLjAyOTkzNTI4MzMwODk3NjU0NmUrMDAsLTMuNDk5NDMzNjQ1ODkxMDQ3NDQwZS0wMSwxLjEwMDI4NDMzODIyMDM3Mzc0OGUrMDAsMS4yOTgwMjE5NzIzMjYyMjExODVlKzAwLDIuNjk2MjI0MDUyNTYzNTc5NjY1ZSswMCwtNy4zOTI0NjY2MjgwNDE1MTM1NTRlLTAyLC02LjU4NTUyOTY2ODA1MDAzNzQ3N2UtMDEsLTUuMTQyMzM5NjU5Mzk5ODg4MjQxZS0wMSwtMS4wMTgwNDE4NzUyODczNjQ3ODRlKzAwLC03Ljc4NTQ3NTU5NDA4NTA3NTYxMmUtMDIsMy44MjczMjQzMDAxMjI2ODE0MzNlLTAxLC0zLjQyNDIyODA1MzE5NTM4Njk3OGUtMDIsMS4wOTYzNDY4NDU2NjU3OTg1NDJlKzAwLC0yLjM0MjE1ODAxMzQ0NTM2NTM5NGUtMDEsLTMuNDc0NTA2NTI0OTg1NjMyNzI3ZS0wMSwtNS44MTI2ODQ3Njg2MDMyNTIzMzllLTAxLC0xLjYzMjYzNDUyNjIzNDQ5NTIzMWUrMDAsLTEuNTY3NzY3NzI0MzA4NDU0MDE0ZSswMCwtMS4xNzkxNTc5MzA2Mzc2ODc4MTJlKzAwLDEuMzAxNDI4MDcxNjY0NzYwODIyZSswMCw4Ljk1MjYwMjcyODg5OTI5OTMxMWUtMDEsMS4zNzQ5NjQwNjYzOTI5ODk4NDhlKzAwLC0xLjMzMjIxMTY1NDU5NDUwMTc0OWUrMDAsLTEuOTY4NjI0Njg5Nzg2MDIwMjMyZSswMCwtNi42MDA1NjMyMDEzNDA4Mjg4NTZlLTAxLDEuNzU4MTg5NTMyOTYwMjgwMDc3ZS0wMSw0Ljk4NjkwMjc0OTA5ODI3NDgwMWUtMDEsMS4wNDc5NzIxNTU5NjgwNTI4MjFlKzAwLDIuODQyNzk2NzA4MDcyMTQ2MTI4ZS0wMSwxLjc0MjY2ODc4MDY1NTYzMTEzM2UrMDANCjQuMjk5OTk5OTk5OTk5OTk5ODIyZSswMCwzLjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4xMDAwMDAwMDAwMDAwMDAwODllKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSwtMi4yMjYwNTY4MDk0ODMyMDQ3NzllLTAxLC05LjEzMDc5MjE4MDQxNzk2MzY5OWUtMDEsLTEuNjgxMjE4MjE1NDk0NDMzNTEwZSswMCwtOC44ODk3MTM1ODA5NTQ0OTkxNTBlLTAxLDIuNDIxMTc5NjA5ODUxMjMwMDQxZS0wMSwtOC44ODcyMDI1NzM1MzYzMDgwNDhlLTAxLDkuMzY3NDI0NjM1MzUyNTcxNDE2ZS0wMSwxLjQxMjMyNzcwNjAzNzQ0MzA2NWUrMDAsLTIuMzY5NTg2OTA1MjI2NjAyOTgwZSswMCw4LjY0MDUyMzAwNDk3NjQ3OTE4MmUtMDEsLTIuMjM5NjA0MDU4NjYxNzM2NzMwZSswMCw0LjAxNDk5MDU1MDkwMjg3NDkzM2UtMDEsMS4yMjQ4NzA1NjQxOTM2NTk2OTRlKzAwLDYuNDg1NjEwNjM0MzU3NjE3ODEwZS0wMiwtMS4yNzk2ODkxNzMyMDQyMzk0NzJlKzAwLC01Ljg1NDMxMjA0Mjc3NzcyNjIxMGUtMDEsLTIuNjE2NDU0NDU3MTA5MDA3MDM3ZS0wMSwtMS44MjI0NDc4Mzc4OTk0MjkzNzllLTAxLC0yLjAyODk2ODQwNzY2NjY3MDU4MWUtMDEsLTEuMDk4ODI3NzkzMDkzMTM3OTY3ZS0wMSwyLjEzNDgwMDQ4OTEwMTY4ODkwM2UtMDEsLTEuMjA4NTczNjUzNzMzMjIxMjMxZSswMCwtMi40MjAxOTgyOTg3MDIxOTQ5OTRlLTAxLDEuNTE4MjYxMTcwMzU1NzA1NDAzZSswMCwtMy44NDY0NTQyMzE0MjUxNzc2MTdlLTAxLC00LjQzODM2MDkzMTU1MTk3Nzg2MmUtMDEsMS4wNzgxOTczMDM3MTQyMzc4MzFlKzAwLC0yLjU1OTE4NDY2NjM0NDA5NjQ3MGUrMDAsMS4xODEzNzg2MDEyODgyODU4NjhlKzAwLC02LjMxOTAzNzU4MDA1MTY3MjkzMWUtMDEsMS42MzkyODU3MjQ1MjU4NjYyOTVlLTAxLDkuNjMyMTM1NTkyMTE5NjgyNDU1ZS0wMiw5LjQyNDY4MTE5MjIwMzkzNzUxOWUtMDEsLTIuNjc1OTQ3NDYyMzUzNDc2ODAyZS0wMSwtNi43ODAyNTc4MTU2NDQ1MDM2OTRlLTAxLDEuMjk3ODQ1NzkwNjUxMDk4NzMwZSswMCwtMi4zNjQxNzM4MTcxNDExODAxMzRlKzAwLDIuMDMzNDE4MTcwNTI0MzI0OTAwZS0wMiwtMS4zNDc5MjU0MjI2MjkxMjA0MDdlKzAwLC03LjYxNTczMzg4MjU2NTU4OTU4NWUtMDENCjUuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4xOTk5OTk5OTk5OTk5OTk5NTZlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwyLjAxMTI1NjY4MTQ2MzEzNjk2NGUrMDAsLTQuNDU5NTQyNjQ1NTg1NzAyNjI1ZS0wMiwxLjk1MDY5Njk3MTUxMzgxMTcxN2UtMDEsLTEuNzgxNTYyODU1NzA1NTkxMzY0ZSswMCwtNy4yOTA0NDY1ODc5NDY5NTcxMDJlLTAxLDEuOTY1NTc0MDA3Mjg3ODQ5MTQ1ZS0wMSwzLjU0NzU3NjkzMTEzMjE4MDg2NmUtMDEsNi4xNjg4NjU1NDM5MzI3ODc3NDNlLTAxLDguNjI3ODk4OTE3NTc2MzIyMzgwZS0wMyw1LjI3MDA0MjA4NDU0NjU5NjcyOGUtMDEsNC41Mzc4MTkxMjYzNTY4NDAxNDllLTAxLC0xLjgyOTc0MDQxMTAwNDUzMTQ0MmUrMDAsMy43MDA1NzIxOTEwMTQ5NTMwNTBlLTAyLDcuNjc5MDI0MDc3MzI3MDM2ODQ2ZS0wMSw1Ljg5ODc5ODIwNzM0NTE5NDk5OWUtMDEsLTMuNjM4NTg4MDk5NzA3ODk4OTgyZS0wMSwtOC4wNTYyNjUwNzUzOTM2NzgxOTllLTAxLC0xLjExODMxMTkyNDMyMTYzMjE3OGUrMDAsLTEuMzEwNTQwMTE1NDE0MTIzMjk3ZS0wMSwxLjEzMzA3OTg3OTU1OTcyMTg5MmUrMDAsLTEuOTUxODA0MTAxNDgxNjAyMTA1ZSswMCwtNi41OTg5MTcyOTcyOTQ5Nzk0NDVlLTAxLC0xLjEzOTgwMjQ1NTQyNjc3NDA1M2UrMDAsNy44NDk1NzUyMTI0MDUwMDExMTJlLTAxLC01LjU0MzA5NjI2NTcxMzAwODk1MmUtMDEsLTQuNzA2Mzc2NTgxNTQ3OTE0MTYyZS0wMSwtMi4xNjk0OTU2OTkzNjY0ODk4OTRlLTAxLDQuNDUzOTMyNTA4OTQ3OTczMTAxZS0wMSwtMy45MjM4ODk5ODE0OTYzNjczNjNlLTAxLC0zLjA0NjE0MzA1NDc5OTkyNjY0MmUrMDAsNS40MzMxMTg5MTM4NzUxOTY3NDNlLTAxLDQuMzkwNDI5NTc2NzIwNDI1NDQyZS0wMSwtMi4xOTU0MTAyODMzMTIxMzI1MDRlLTAxLC0xLjA4NDAzNjYyMDY3MTkzNDUxNGUrMDAsMy41MTc4MDExMDY4MTM1ODI4MjNlLTAxLDMuNzkyMzU1MzM1MzU1ODY3NTUyZS0wMSwtNC43MDAzMjg4MjcwMDg3NDc4NzhlLTAxLC0yLjE2NzMxNDcwNTc1NTM4NjI2MmUtMDEsLTkuMzAxNTY1MDI1MjQzMjEyNDkyZS0wMSwtMS43ODU4OTA5MjA4NzMyOTE0ODhlLTAxDQo1LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsNC40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCw0LjAwMDAwMDAwMDAwMDAwMDIyMmUtMDEsLTEuNTUwNDI5MzQ1MDgzNDgwOTU5ZSswMCw0LjE3MzE4ODIxMDMxODM1NDg1MmUtMDEsLTkuNDQzNjg0OTA4MjQyOTM4NjAzZS0wMSwyLjM4MTAzMTQ3ODMyMzEyMTIzMWUtMDEsLTEuNDA1OTYyOTE2MjY3ODk5MjY1ZSswMCwtNS45MDA1NzY0NTg2OTUzOTY4MjBlLTAxLC0xLjEwNDg5NDA1MDY1OTI3ODMxNWUtMDEsLTEuNjYwNjk5ODExODY5MjYzMjk4ZSswMCwxLjE1MTQ3ODczMTQwMDkyMTU3OWUtMDEsLTMuNzkxNDc1NjI4Nzk5MjI3MzkzZS0wMSwtMS43NDIzNTYxOTc4MDkyMzA1NjdlKzAwLC0xLjMwMzI0Mjc1NDExMjMxNTcxNmUrMDAsNi4wNTEyMDA4NDA4MjE2NjY2NDllLTAxLDguOTU1NTU5ODU1NTEzMjM5ODUzZS0wMSwtMS4zMTkwODYzOTc3OTk2NzA1NzRlLTAxLDQuMDQ3NjE4MTIwNDA0OTc0OTI4ZS0wMSwyLjIzODQzNTYzMzEyOTEwNjkyOGUtMDEsMy4yOTYyMjk4MjEyNzczODA1MTJlLTAxLDEuMjg1OTg0MDA3MDgwMjkzMDM1ZSswMCwtMS41MDY5OTgzOTgyMTQyNzIwNjFlKzAwLDYuNzY0NjA3MzIzNjE2MjMxODQ5ZS0wMSwtMy44MjAwODk1NTU3NzgyMDIxOTVlLTAxLC0yLjI0MjU4OTM0MjUxNjQwMzQwNmUtMDEsLTMuMDIyNDk3MzA0NTUwNzAwMzE0ZS0wMSwtMy43NTE0NzExNjY2MTI4Mzg2MzdlLTAxLC0xLjIyNjE5NjE5MTc4MzAxOTA4NWUrMDAsMS44MzMzOTE5OTI1NzYwMTI1NDFlLTAxLDEuNjcwOTQzMDMyNzg4ODU3MjUyZSswMCwtNS42MTMzMDIwNDQ4NzU3MTEzNTVlLTAyLC0xLjM4NTA0MjczNTA5NTcyNjAwMWUtMDMsLTYuODcyOTkwMzcxNTY2NjM1MTcwZS0wMSwtMS4xNzQ3NDU0NjQxODExMTQ3NTFlLTAxLDQuNjYxNjY0MjYwMzQwMzA3NDUzZS0wMSwtMy43MDI0MjQ0MDcwNDM0MjkyMzNlLTAxLC00LjUzODA0MDQxMDUyMDAxMDYxNWUtMDEsNC4wMzI2NDU0MDE2MzI0NjgwOTZlLTAxLC05LjE4MDA0NzY5ODE5MDQ1NDQwOGUtMDEsMi41MjQ5NjYyNzA3Njg3MjQyNjRlLTAxLDguMjAzMjE3OTcyNjE0MjE3MzY4ZS0wMSwxLjM1OTk0ODU0MTY3OTQ4NDMxM2UrMDANCjUuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwtOS4wMzgyMDA3Mjc2OTQ2ODEzMDJlLTAyLDEuMzY3NTk3MjM5ODA2NzEzNTQ5ZSswMCwxLjAzNDQwOTg4NjQ4MTUxODEwNGUrMDAsLTkuOTYyMTI2NDAzNzEwNjYxNjA0ZS0wMSwtMS4yMTc5Mzg1MTE1OTMxNTA5MTllKzAwLC0zLjA0OTYzNjM3ODU0NDIwNDMyOWUtMDEsMS4wMjg5MzU0OTI1OTQ4NTQxNzNlKzAwLC03LjIyODcwMDc1NjAwMDQ5MDM5MWUtMDIsLTYuMDA2NTc1NTc2NTc3ODg0OTkwZS0wMSwxLjU1MjI0MzE4MDA0ODU2MDc2N2UrMDAsMi44NjkwNDQ4ODAwMzM0NjM5MThlLTAxLC0yLjMyMDU5NDI3NTc5MDc0MTYyM2UrMDAsMy4xNzE2MDYyNjI5MjY4ODc2MzJlLTAxLDUuMjAwNDA2MTQ1NzA4Njc4MDk2ZS0wMSwyLjI1NjA4NjU0NDcxMTAzNzg2N2UtMDEsNC40OTcxMjEwMDIzMTk5MjUzOThlLTAxLC02LjcyNzU2MDg5MjI5ODE3MzMzNGUtMDIsLTEuMzE4Mzk1ODY5NjQ0NzM0MjA4ZSswMCwtMy43MDcwNDAwMzIyMDQ1MzQzNzRlLTAxLC05LjQ1NjE1Nzk1NTU2MjkxMzgzMWUtMDEsLTkuMzI3NDA5MTA3OTQzNzc4MTk5ZS0wMSwtMS4yNjMwNjgzNDkxMDIyNzUzODllKzAwLDQuNTI0ODkwOTI2Mzk2NDYzNzMxZS0wMSw5Ljc4OTYxNDU0MTI2MjcwODkxM2UtMDIsLTQuNDgxNjUzNjI2ODA3MDgwNTcwZS0wMSwtNi40OTMzNzkyNzczMDM4ODEyMDNlLTAxLC0yLjM0MjMxMDUwMjE0NTIxNjk1MmUtMDIsMS4wNzkxOTQ3MjgxMTI0ODkxNzdlKzAwLC0yLjAwNDIxNTcxNTQ5ODkxNTA4NWUrMDAsMy43Njg3NjUyMDg1MDg5MjczNzhlLTAxLC01LjQ1NzExOTc0MDE3NzgyMzc1MmUtMDEsLTEuODg0NTg1ODQ0OTc5NDQ3NzAwZSswMCwtMS45NDU3MDMwODMxNjM5NTg3OTFlKzAwLC05LjEyNzgzNDk0MTM1MjkxODA2M2UtMDEsMi4xOTUwOTU1NTc5MzA0NTI2MzRlLTAxLDMuOTMwNjI5MzM5ODAwOTE2MjIyZS0wMSwtOS4zODk4MTU3MjY3Nzc4NTI1ODllLTAxLDEuMDE3MDIwOTkxNDEzMjQ0NjQ2ZSswMCwxLjQyMjk4MzQ5NjUxNjEwNjExN2UrMDAsMy45NjA4NjU4NDk1NjU2MDE4MzdlLTAxDQo1LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsLTUuOTE0MDI2Njc4MDgxMTA3OTM1ZS0wMSwxLjEyNDQxOTE4NDUxMDM2ODE1M2UrMDAsNy41NTM5NTY5NTY2MzMzODMwNjllLTAxLDguNjc0MDc0MTEzNTQ5MTc5NDU0ZS0wMSwtNi41NjQ2MzY3NDk3MTUzMTQ2MzRlLTAxLC0yLjgzNDU1NDUwNTI3NDcwMjMxOGUrMDAsMi4xMTY3OTEwMjE0ODM2NzUzNzJlKzAwLC0xLjYxMDg3ODQwMzQ0OTkzMzcxNmUrMDAsLTMuNTc2ODA3MTg2MDIyMTEyODk0ZS0wMiwyLjM4MDc0NTM1MTIxOTc1MDI4M2UrMDAsMy4zMDU3Njc1NjI3NDM3Mzk5NTFlLTAxLDkuNDkyNDY0NzM1NTgyMzU2NTk0ZS0wMSwtMS41MDIzOTY1NjkzODE3MTI3MzJlKzAwLC0xLjc3NzY2Njk1NDczMzcwNjI4NGUrMDAsLTUuMzI3MDI3OTE5Nzk1NTQ1MDE5ZS0wMSwxLjA5MDc0OTczNDQzNDUwMDA3M2UrMDAsLTMuNDYyNDk0NDc2NDczMDk5NzE0ZS0wMSwtNy45NDYzNjMyMTA3MTQ5ODczMDJlLTAxLDEuOTc5NjcyODk5NDQ5Njc0NTYxZS0wMSwxLjA4MTkzNTIxODQ3NzI2NTI1OWUrMDAsLTEuNDQ0OTQwMTk5MDczMzcxNjc4ZSswMCwtMS4yMTA1NDI5OTQxMjMzNTE2NDZlKzAwLC03Ljg4NjY5MjU0NTA5MzY2MjAyMWUtMDEsMS4wOTQ2MzgzNzQ3MTIwOTEzNTVlKzAwLDIuMzQ4MjE1MjU5NDg3MzE5MDE4ZS0wMSwyLjEzMjE1MzQxMDU3MDQ0MzYwOGUrMDAsOS4zNjQ0NTcyNTgzMTExNTg0OTRlLTAxLC0zLjUwOTUxNzY4Njk2NzAzODMwOGUtMDIsMS4yNjUwNzc4MzgwODg3NjU5NDllKzAwLDIuMTE0OTcwMTI3MzE4NzgwMTQ2ZS0wMSwtNy4wNDkyMTM1MjUwNzQ0NDkyMDVlLTAxLDYuNzk5NzQ4NDQyNDUxMDIzNTAwZS0wMSwtNi45NjMyNjY1Mzg2MTA4MjgzMzhlLTAxLC0yLjkwMzk3MTAwODAzODY2NzcwMGUtMDEsMS4zMjc3ODI2OTU5NTc5ODMwMzllKzAwLC0xLjAxMjgxNDg2MjE3Mzk5MzUyNGUtMDEsLTguMDMxNDEzODczNDE2MjgzMjExZS0wMSwtNC42NDMzNzY5MTQzNTQ5MTYzOTZlLTAxLDEuMDIxNzkwNTg1NTg4NjczMDg0ZSswMCwtNS41MjU0MDY3MzQxNjcyOTE4ODllLTAxDQo1LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMy43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDEuNjk5OTk5OTk5OTk5OTk5OTU2ZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsLTMuODY4NzA4NDY4NTA2NDY1NDM3ZS0wMSwtNS4xMDI5MjczOTYzMzYyODUzMzdlLTAxLDEuODM5MjU0OTQzNDAzMDk5NDE4ZS0wMSwtMy44NTQ4OTc2MDM3NTYwODI4MTNlLTAxLC0xLjYwMTgzNjA0ODk3MjUzNjk1MmUrMDAsLTguODcxODA5NDE4NDUwNDAyNjA3ZS0wMSwtOS4zMjc4OTA0MTUwNjQzODI2NTZlLTAxLDEuMjQzMzE5Mzg0NDU1MTU0ODg2ZSswMCw4LjEyNjc0MDQyMTA5MDQyMzcxNmUtMDEsNS44NzI1OTM3OTM5OTgyNTk3NTllLTAxLC01LjA1MzU4MzE3MjY0NDA5OTM5N2UtMDEsLTguMTU3OTE1NDE5OTM5NzEzMDMxZS0wMSwtNS4wNzUxNzYwMTY1NzM1NzA0MjZlLTAxLC0xLjA1MTg4MDEwMjU1MTY3Mzk2OGUrMDAsMi40OTcyMDAzOTE1ODcwMDcxMjllKzAwLC0yLjI0NTMyMTY0ODM3MTQwMjAyNGUrMDAsNS42NDAwODUzNTA3MzgwOTEwMzBlLTAxLC0xLjI4NDU1MjI5Nzk5MjUyNzIzN2UrMDAsLTEuMDQzNDM0OTE0OTQ2OTI2NDQ1ZS0wMSwtOS44ODAwMTk0MjQ5MzczNDQwODZlLTAxLC0xLjE3NzYyODk2MjQ4MjYzMDgyNmUrMDAsLTEuMTQwMTk2MzAwOTM0OTYxNjA0ZSswMCwxLjc1NDk4NjE1Mzc0MjA1ODU3NGUrMDAsLTEuMzI5ODg0MjIzMDk1OTE5ODYwZS0wMSwtNy42NTcwMjE5NDQ3ODA4NjI5NTRlLTAxLDUuNTU3ODY5NjQwODI4NzI5ODA3ZS0wMSwxLjAzNDkzMTQ1NjYyOTkzNTI5OGUtMDIsNy4yMDAzMzc1OTM0MTY1MjgxMjZlLTAxLC0xLjgyNDI1NjY1NTkzNzgyOTkzMGUrMDAsMy4wMzYwMzkwNDQ2MjAwMTQxNzFlLTAxLDcuNzI2OTQ4MzcxMDIzODE3Mzc1ZS0wMSwtMS42NjE1OTgyOTExMTQ1NjM2OTdlKzAwLDQuNDgxOTUyODQ0MjMzMTI0Njc4ZS0wMSwxLjY5NjE4MTU3MjgyODE2MDYyMmUrMDAsLTEuNDg1NzcwMzM1NDcwMjcxNjczZS0wMiw4LjIxNDA1OTM3MDI0ODExMjM5MWUtMDEsNi43MDU3MDQ1MDMxMDkwOTg5MzVlLTAxLC03LjA3NTA1Njk3NTEwNTc2OTAzMGUtMDEsMy45NzY2NzM0NTg2NDk1MTY5OTBlLTAyLC0xLjU2Njk5NDcxMDg2MTYwMjQ2OWUrMDANCjUuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuOTk5OTk5OTk5OTk5OTk5ODg5ZS0wMSwtNC41MTMwMzAzNzEwMjUyNjExNjdlLTAxLDIuNjU2ODc5NzQ5NjYyMzU5MTgwZS0wMSw3LjIzMTAwNDkzNzM3Nzk4MTY2N2UtMDEsMi40NjEyMTI1MjQ3OTExNjE2OTBlLTAyLDcuMTk5ODM3MzAxNDMxNjU0MTI0ZS0wMSwtMS4xMDI5MDYyMTI5NTUzNjk3MjVlKzAwLC0xLjAxNjk3Mjc0NTU0ODcxNTk3M2UtMDEsMS45Mjc5Mzg0NTEzMDc3MjE2MjNlLTAyLDEuODQ5NTkxMjQ2Njc5NjM2NDgwZSswMCwtMi4xNDE2NjY1NjIwMDA4NDIzNzhlLTAxLC00Ljk5MDE2NjM3OTk0MTgyODg3OGUtMDEsMi4xMzUxMjIzODQzNTQ4NjA4NDdlLTAyLC05LjE5MTEzNDQ0ODY5OTQzNzI5OGUtMDEsMS45Mjc1Mzg0OTA2NTIxNjE3MDdlLTAxLC0zLjY1MDU1MjE2NTQ2MjU3NjY1OWUtMDEsLTEuNzkxMzI3NTQ4MDQxMTgzNjU5ZSswMCwtNS44NTg2NTUxMTMzODYwODQ2NjJlLTAyLC0zLjE3NTQzMDkzOTMwMTk5MjQ5NWUtMDEsLTEuNjMyNDIzMzAyMDY3OTgzMjUxZSswMCwtNi43MTM0MTU0NjE0NTIxNzY4MjVlLTAyLDEuNDg5MzU1OTYyMDc0NDgwMjg4ZSswMCw1LjIxMzAzNzQ4Mjc1NzEzNjg1M2UtMDEsNi4xMTkyNzE5MjczMTE1NzgwOTZlLTAxLC0xLjM0MTQ5NjcyNTU4MzA0MjU2MGUrMDAsNC43Njg5ODM2ODkyMjIyMjQyNjVlLTAxLDEuNDg0NDk1ODEzODAwNzgwNzcyZS0wMSw1LjI5MDQ1MjM4MzM0NDMxNjIyM2UtMDEsNC4yMjYyODYyMTcwODgyNTY0NjllLTAxLC0xLjM1OTc4MDcyNTUwMzgxMzY4MWUrMDAsLTQuMTQwMDgxMTU1Nzk2NzQzMTg0ZS0wMiwtNy41Nzg3MDg2MDQyNTE2NjA0ODZlLTAxLC01LjAwODQwOTQyODQ4MjIwOTIxNGUtMDIsLTguOTc0MDA5MjY5MDE4MzA0ODY4ZS0wMSwxLjMxMjQ3MDM2NzE0MDk5NjI5N2UrMDAsLTguNTg5NzIzODg0NDQzNDIzMTYzZS0wMSwtOC45ODk0MjE1NjQ2NTUzNTk5MDllLTAxLDcuNDU4NjQwNjU0MzU1MzUyOTUwZS0wMiwtMS4wNzcwOTkwNjk0MDM5OTQ4MDJlKzAwLC00LjI0NjYzMzAyNDMyODY1NzA4MGUtMDEsLTguMjk5NjQ1OTc1Mzc5NjE5MjM0ZS0wMQ0KNS40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjY5OTk5OTk5OTk5OTk5OTk1NmUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuNDExMTcyMDYzODg5NjExNjk0ZSswMCw3Ljg1ODAzODI2ODMxMTcyNTU4M2UtMDEsLTUuNzQ2OTUxODQ2NTM5NDY0MzY1ZS0wMiwtMy45MTIxNzA1MjE3NDAxNjI1NTRlLTAxLDkuNDA5MTc2MTQ1NzUxMTMzNTkxZS0wMSw0LjA1MjA0MDgwMzIyODg4MDcxN2UtMDEsNC45ODA1MjQwNDY4Mjg1NjcxOTdlLTAxLC0yLjYxOTIyMzczNDQyNTA0ODI0NGUtMDIsLTEuNjg4MjMwMDI3NzcxNDMyMTYyZSswMCwtMS4xMjQ2NTk4MjU1OTU1MjcxNTdlLTAxLC01LjMyNDg5OTE5MjA5MDY3NzQxM2UtMDEsNi40NTA1NTI3MzQ1OTg3Njg5ODllLTAxLDEuMDExODQyNDMyOTk0MTg5MDc4ZSswMCwtNi41Nzk1MTA0NDc2MTE2ODYxMzBlLTAxLDQuNjgzODUyMzQyNzcwNTE2NDMwZS0wMSwxLjczNTg3ODk5NzY4NTcxMzE4OGUrMDAsLTYuNjc3MTI3MjA1NzA1NTg5NzA4ZS0wMSwxLjY4MTkyMTc0MDA3MzEzNzY2MWUrMDAsLTguNTI1ODU4NDcxNzA2NDcwMDQzZS0wMSwyLjI5NTk3NTU2MDc5NTE0NDQ0OWUtMDIsLTEuMTE0NTYxMTg0MTg0MTI1MDk0ZS0wMiwxLjE0OTg4OTk4NzAwNjIzNzQ1MGUtMDIsLTguMzc2NzgwNDE5MDc5NDUyNTg5ZS0wMSwtNS45MTE4MzEwMzc2NDQyOTcyOTNlLTAxLC02LjY3NzIwMjg2MzU5Mzk5Mzk1M2UtMDEsMy4yNjk2MjU5NTQwNDQ1NzM3OTBlLTAxLDMuMzAwMzUxMTQ1MTAzMTE2NDQ2ZS0wMSwyLjIyNTk0NDMzMTczODI1ODc4NmUrMDAsMS4zNzA5ODkwMDYyOTExMjE0MTVlKzAwLC01LjA5ODQzMjQyMTM4NDc5MDkxNGUtMDEsMy4yNDg2OTYxNTc5NjE4NjA2MjBlLTAxLDkuOTcxMTc5ODA3OTE3NTk1MDYyZS0wMSwzLjA2MDE4MjQzMzg1MTc4MDcyM2UtMDIsLTYuOTY0MTU3ODQ0NjkzNTU4MTQxZS0wMiw1LjE1NzQ5NDI3Njk4ODkwNDAwM2UtMDIsOC42NzI3NjYyODgwODQyNzgxODZlLTAxLC04LjQ4MzIwNTIyODA1MjMyNTEzMWUtMDEsLTMuMjU2Njk0Njg4MjAxNzQxNjgzZS0wMSw0LjcwNDMzMTQ0ODQ2NDgxODU0NGUtMDEsMy4xMTQ0NzA3MTU1NDE1NTUxOTBlLTAxDQo1LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCw0LjAwMDAwMDAwMDAwMDAwMDIyMmUtMDEsMi4zOTU4Mjc1OTg1NjM5MTMyNTJlLTAxLC0zLjY5ODAxMTY2MzAzODAzMjE5M2UtMDEsOS43MjUzNTc4OTE0MjUzNjkxMDZlLTAxLDIuMTMzODY4MjQ3MjA0NTM3MzgzZSswMCw0LjA2NDE1NDkzNjc2MjA2MjE4N2UtMDEsLTEuOTMxNzY3MDE1NDk4Mzk5MDIxZS0wMSw3LjU1NzQwMjg4ODk0NTQyNTg4OWUtMDEsLTUuMzkxMzI2MzY3NTI5ODk5NDY2ZS0wMSwtNy40OTY5MDM0NDcwMjg5NjYzODNlLTAxLDMuMjgwODc0NzYxMzcxMTgwMjgyZS0wMiwtMi41ODI3OTY2MzI5Njk5NDQ1NTBlKzAwLC0xLjE1Mzk1MDM2MzY1MjAwOTQyNWUrMDAsLTMuNDc5NjE4NTU5MjA4NDU4MzA2ZS0wMSwtMS4zNTMzODg4NTgxNDc3MTMzNjllKzAwLC0xLjAzMjY0MzEwMTg5MjEyOTYwMGUrMDAsLTQuMzY3NDgzMzc0NTgwMDczOTYzZS0wMSwtMS42NDI5NjUyOTM1MzA2MDkxNjFlKzAwLC00LjA2MDcxNzk2MjU5ODMxOTE4NmUtMDEsLTUuMzUyNzAxNjQ1MzI4NDQ0ODM1ZS0wMSwyLjU0MDUyMDgzODUwMTYwMTc2NGUtMDIsMS4xNTQxODQwMzA0OTQwMTkxODZlKzAwLDEuNzI1MDQ0MTY0OTI4NjU5MDg1ZS0wMSwyLjEwNjIwMjEzNDIwNjM2MjQxN2UtMDIsOS45NDU0NDU3MDMwNzExNzQ4NzBlLTAyLDIuMjczOTI3NzUxMjExMjg0NTk4ZS0wMSwtMS4wMTY3Mzg2NDg2MDk3Njg5MjVlKzAwLC0xLjE0Nzc1MzI0NzcwNzk4MTczM2UtMDEsMy4wODc1MTI0MTgzNjYxMzEyMTdlLTAxLC0xLjM3MDc1OTk4MjU0MzA2MDUyOWUrMDAsOC42NTY1MjkyMjgxNTg1MzI2NTJlLTAxLDEuMDgxMzc2MDM0NDU4MTg5NzUwZSswMCwtNi4zMTM3NTk4ODQ0OTM4ODgwMzBlLTAxLC0yLjQxMzM3NzkxNDUzMTA0NTQ5OGUtMDEsLTguNzgxOTAzNDI4MTAwNzMxMzI0ZS0wMSw2Ljk5MzgwNDgzNTg3ODE3MTI1NWUtMDEsLTEuMDYxMjIyMjg3NDQ1OTA5MTg1ZSswMCwtMi4yMjQ3NzAxMDI0MjkyMDI5NzhlLTAxLC04LjU4OTE5OTA3ODA3NjcxNTc4OGUtMDEsNS4wOTU0Mjc3MDExMjg5NDk2MzJlLTAyLC0xLjc5NDIyOTI3MTQ4OTcyMTAwMGUrMDANCjQuNTk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwxLjMyNjQ2MTY0MjM2NTY5MzQxNmUrMDAsLTkuNjQ2MDY0MjQyMDYyNjM5NjgyZS0wMSw1Ljk4OTQ2ODMxMTYyNzYwNDg0NmUtMDIsLTIuMTI1MjMwNDQ3NzAzMDkxOTk2ZS0wMSwtNy42MjExNDUxMTkyMjQ5ODEyNzllLTAxLC04Ljg3NzgwMTM2NjM1OTM1MzU3NGUtMDEsOS4zNjM5ODU0MzU1MjQ1OTU1MDJlLTAxLC01LjI1NjQwNTkzMTAxOTM5NjY4MmUtMDEsMi43MTE3MDE4NDYzNzMxMDkwNzBlLTAxLC04LjAxNDk2ODg1Mzk0Mzc0ODAyOGUtMDEsLTYuNDcxODE0MzE4NDc3NjA2Njg3ZS0wMSw0LjcyMjQ3MTUwMDg3ODQ4NzMyN2UtMDEsOS4zMDQwODQ5NjExMTExNjMxMjFlLTAxLC0xLjc1MzE2NDAyMzI3MDE5OTQ5MGUtMDEsLTEuNDIxOTE5ODcxNjQwNDM2ODcyZSswMCwxLjk5Nzk1NjA3OTc1MDAwNDY2NWUrMDAsLTguNTY1NDkzMDgyMzQyMDk0OTQ0ZS0wMSwtMS41NDE1ODczOTk2NzE3ODc0ODRlKzAwLDIuNTk0NDI0NTg3NzY4MTUxOTkxZSswMCwtNC4wNDAzMjI5Mzg1MDkzNzE0MDllLTAxLC0xLjQ2MTczMjY4ODI2MTQwODEyMGUrMDAsLTYuODM0Mzk3NjY3ODg2ODE3OTA2ZS0wMSwzLjY3NTQ0ODk2MDIyMjY5MDI5OGUtMDEsMS45MDMxMTU1NzU5MzkzOTY5NTNlLTAxLC04LjUxNzI5MTk3MjUzNTg5OTc1OGUtMDEsMS44MjI3MjM2MDAxMjc5NTk0MjBlKzAwLC01LjIxNTc5Njc3OTkzMzczMTI1M2UtMDEsLTEuMTg0Njg2NTkwNDExNTUxOTk5ZSswMCw5LjYwNjkzMzk4NDYwNjU5NzA4OGUtMDEsMS4zMjkwNjI4NDY1Mzk2ODIzMTllKzAwLC04LjE3NDkzMDk3NjE2MjI2NDYwNmUtMDEsLTEuNDAxMzQ3MjkzMDM5MzEwNDkzZSswMCwxLjAzMDQzODI2NzQxNTYwNDczNmUrMDAsLTIuMDQ3MzIzNjEzMDU3OTYxNzMzZSswMCwtMS4yMjY2MjE2NTkzOTY2MTU0OTRlKzAwLDkuNjc0NDYxNTAwNTAyMzUwNDMxZS0wMSwtNS41MzUyNTQ4MDIyMzg5NTcwNzhlLTAyLC0yLjYzOTM3MzQ4NTkyNjg3ODU5M2UtMDEsMy41MjgxNjYwNjQ5NDM3ODM0ODZlLTAxLC0xLjUyNzc0NDIzNTQ1NDA4NjgzMGUtMDENCjUuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS42OTk5OTk5OTk5OTk5OTk5NTZlKzAwLDUuMDAwMDAwMDAwMDAwMDAwMDAwZS0wMSwtMS4yOTg2ODY3MjIxNjMwOTAyMjRlKzAwLDEuMjc2MDc1MzQ2MDA2MTg3NTUwZSswMCwxLjMyNTAxNDA1Mjg4NjgxNTI4NmUrMDAsMi4wNTMzMjU2Mzc3Nzk1OTY5MjRlLTAxLDQuNTEzNDAxNTQzMjAxMDI3NDMzZS0wMiwyLjMzOTYyNDgwNjAyMDA1Nzk1N2UrMDAsLTIuNzY0MzI4NDUwMTU4MzcyMDMwZS0wMSwtMi41OTU3Njk4MTgzNDAzOTQzMzBlLTAxLDMuNjQ0ODEyNDkyNDA1MDU1NjcxZS0wMSwxLjQ3MTMyMTk1NjE0MjMzODI5NGUrMDAsMS41OTI3NzA3NTQ0MTc0ODM2MTRlKzAwLC0yLjU4NTcyNjMxNjc2NzcxMjQ3NGUtMDEsMy4wODMzMTI0NTk1OTM0NTI0NTllLTAxLC0xLjM3ODA4MzQ2NzA2NDA3NzEzOWUrMDAsLTMuMTE5NzYxMDc5MTYyMTI5NDE0ZS0wMSwtOC40MDI5MDM5NTQ3OTMwNjUwNjdlLTAxLC0xLjAwNjgzMTc1MjI5ODk4MzgwNmUrMDAsMS42ODE1NzY3MTYyNjczMjc2MzFlKzAwLC03LjkyMjg2NjYxODA2MTQ0OTMxOGUtMDEsLTUuMzE2MDU5MDgwMTE0NTQ5MDg1ZS0wMSwzLjY1ODQ4Nzg3OTE2ODU4MjA5MWUtMDEsMS4yOTc4MjUyNjY5NzM1ODU0NjdlKzAwLDQuODExMTUxMjYzODg4MzU0MTI0ZS0wMSwyLjc1OTM1NTExNDAyMTU4MjE3OGUrMDAsLTcuNDY2Nzk3ODI1MTE0OTU2OTMyZS0wMiwyLjU4NzE2NDQwMjI5NzQ2MDQ3NWUtMDEsMi43NTYwMDY3Mzk4NDA1NjM1NDZlLTAxLDEuNDM1MDQ5Mzg2Nzg5MTU0NTAyZSswMCw1LjA3MjM4OTUxMTA5NjE1MjU0OGUtMDEsLTEuMTYyMjk3MDAzODcxNDkwOTU4ZS0wMSwtOS40NzQ4ODU5NDkwNjg3OTUzMzJlLTAxLDIuNDQ0NDM0NTU5NjE2MzI1ODMxZS0wMSwxLjQwMTM0NDgzMTI5MTk1OTYzNmUrMDAsLTQuMTAzODE3OTM2NTc4NzA1ODYxZS0wMSw1LjI4OTQzNjE4NDE2NTgyMjE3NWUtMDEsMi40NjE0Nzc4ODY4NDg0NDE1OTllLTAxLDguNjM1MTk2NTgzODEzMTQ2MTQzZS0wMSwtOC4wNDc1Mzc0MDYzNzg2OTMwODFlLTAxLDIuMzQ2NjQ3MDMwNTI2NTYxNjUwZSswMCwtMS4yNzkxNjExMDcwMjgyNTgyNDllKzAwDQo0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuODk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTMuNjU1NTEwODk5ODYwMzczMDMxZS0wMSw5LjM4MDkyNTQwOTA1NjQ1NTMzM2UtMDEsMi45NjczMzE3MjQ5NDExMzM1MDhlLTAxLDguMjk5ODYxNTkwODExMDMxODA4ZS0wMSwtNC45NjEwMjMzMzk4MjU2MjM3MTNlLTAxLC03LjQ4MDQ5ODI2ODAzNDEwNjcyNGUtMDIsMS4yMjMxOTgzNjM4ODE3Mzg2MjNlLTAyLDEuNTY5MjU5NjE0NTM1OTA0MzQ2ZSswMCw2LjkwNDI5MDI0MzgzMDQ4OTgzN2UtMDEsNy45NjY3MjEwODM2NDY3MTM5NDFlLTAxLC02LjU3OTI2MDkyNTM2Nzk1MjM3M2UtMDEsOS42ODg4MjYzODU2MzA1MDc5MDllLTAxLDIuMjU1ODE2NjM1Njg4MDM1MTk5ZS0wMSwxLjM4OTE0NTMxNTY3NzkyNzQyOGUrMDAsMi4wMTQwNjAxNTQ5MTg0NjgwMTVlKzAwLC0zLjA2NzY1Nzc2MDI3MDA0NTU1M2UtMDEsLTQuMDYzMDMxMzA0NDUwNjI1NTQ3ZS0wMSwtOC42NDA0NDk5MTEwMjM2OTU0MTdlLTAxLC0xLjQzNTc5NTExNzE2MzIwNTUxNGUtMDEsLTMuODIwMjU0NDg5NTAzODM1OTQ4ZS0wMSwzLjU5NTA0Mzk5NTcxMDEwMTU4MWUtMDEsLTEuNDQ1NjY4MTY5MzM3MzU5MzY2ZS0wMSwtMy42MTU5OTI4MDc4MTYxOTc5MThlLTAxLDEuMDY0NTg1MTM2MTI3ODUxNzcyZSswMCwtOS4zNzg4MDIzMTE1MTQ1MTY5MzJlLTAxLDQuMzMxMDc5NTMxNTEzNDM2NDk4ZS0wMSwtNC4wNTk0MTcyNzE4ODQ4MzQyNTVlLTAxLDcuMjQzNjg1MDQ4Njk5NjQ0MDI1ZS0wMSwxLjM4NTI2MTU0NjcyMjIzMDQ1MmUrMDAsLTMuMDMwOTgyNTM0MjQwNzI3MDU1ZS0wMSw0LjQxMDMyOTA3MjczMTUxMzY0NGUtMDEsMS43ODc5Mjg2NTczMzE3OTg0NTRlLTAxLC03Ljk5NDIyMzk5NTQzMDk2NTczNWUtMDEsMi40MDc4NzUwOTc0MTkzODQzODBlLTAxLDIuODkxMjA1MDUyNzg4MTIxNjc3ZS0wMSw0LjEyODcwODIwNDQ2MTc0NjgwMGUtMDEsLTEuOTgzOTg4OTY4MjAwNDU3NDQ4ZS0wMSw5LjQxOTIzMDAzMTAxNDY1Njc3OWUtMDIsLTEuMTQ3NjEwOTQ0ODQzMTM1MzA2ZSswMCwtMy41ODExNDA3NTQ3OTg1Njc0MTZlLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNjAwMDAwMDAwMDAwMDAwMDg5ZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsNS41NTk2MjY3OTcwOTc5Nzk1NzhlLTAxLDguOTI0NzM4ODczMzE1MzAzMjQ1ZS0wMSwtNC4yMjMxNDgyNDEyNTI3MDcxNThlLTAxLDEuMDQ3MTQwMjk0MzMyODQzMjUyZS0wMSwyLjI4MDUzMzI1MTI0MDY3MjAyMWUtMDEsMi4wMTQ3OTk0NjcwNDQzMjg2NjJlLTAxLDUuNDA3NzM1ODUzMDAzOTAyMTM4ZS0wMSwtMS44MTgwNzc2MzAzODM1Njk1MTBlKzAwLC00LjkzMjQwNzAxNDc1NzI1OTA2N2UtMDIsMi4zOTAzMzYwMTI0Njc2NDg5ODVlLTAxLC0xLjAwMDMzMDM0ODk1MzcwNTQyOGUrMDAsMS42NzM5ODU3MDcwMTA3MTAwMzNlKzAwLDEuNjE1NTkyNjcyMzgxNjc5NjQwZS0wMSwxLjU2MzQwNDc0NTAyODkyOTQ1NWUrMDAsLTcuOTA1MjMwMjE4MzMwNzcyMTA3ZS0wMSwtOS4wNzMwMDEyMTUyNTMyNzAxOTFlLTAxLDIuMjQyNTIyMjA5NjU2ODE4OTc3ZS0wMSwtMS42Nzg2ODgzNjI4Mjg2NTY2MzNlKzAwLDIuMTQ5NjU1OTA2MjYwOTM1MjIzZS0wMSw5LjcyMTkyMzIwMDI5MTgwMjk1OGUtMDIsMS4wMTU2NjUyODE1NDIxMDEyMjhlKzAwLDcuMDEwNDEzNDExNjUwOTcwODcyZS0wMSwtNC4xNzQ3NzM0OTg4NTAzMzk4ODFlLTAxLC0xLjA5NzQ5NjY1NDc3MDI0NDcxN2UrMDAsMS43MTIzMDUyMjEzNDMyOTY1NDZlKzAwLC03LjkyMTE1MDIwNTY1MTUwMDQwOWUtMDEsLTEuMDQ1NTI0NTU3MDY5NDY1Nzg4ZSswMCwtMS4wODQ4NTYwNTk0NjE0NDUxNDRlKzAwLDEuMTE3MzA1MzE1NTM2NjY0NTY3ZSswMCwtNS4xODkwMDIwNDQyNDg1MjA3NDBlLTAxLC03LjUzNzA0NDY2MTgwNjAwODI5NGUtMDEsMS4zNzY4OTgyNTkwMzM0NzMyOTNlLTAxLC0yLjA2OTQ0NzEwNTU3MjkxMDIyOGUtMDEsLTYuNzgwOTU0NjA3ODYyNDY5Mzk3ZS0wMSw3LjUzOTkxNDY2OTc4NDc5NjI5N2UtMDEsMS4wNjUzMTU0OTIwOTc5OTQ4MDllKzAwLDkuODUzMTc1MDg5Mzk4NjY5MTUxZS0wMSw3LjY2OTE5NjY5NjYxMTk4OTU1MGUtMDEsNC4wMjYyNTUzMTEzMDAzNTE4NThlLTAxLC0xLjc3NTg4Nzk5OTk2MTgyODg4OWUrMDANCjUuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwzLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS42MDAwMDAwMDAwMDAwMDAwODllKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwxLjY2OTI1MDgwNjM3Njk2ODY1NGUrMDAsMy4wMTk4OTIxMDM1NzU1MjkzOTZlLTAxLDYuMDgxNTY0Mjc2MDA2NDE0ODA0ZS0wMSwxLjExNDk2MjMyMjk0NzQwMjE2MmUrMDAsMS40MzMzNTI1MDI4ODE5OTE3ODZlKzAwLDQuMTgzOTgwMTEzMDkxOTI1MTkwZS0wMSw0LjM1NTQ2MTU5Mjk1NjUzNjAxMGUtMDEsLTUuOTkyMjQyNzc0NTk3MTk0MDExZS0wMSwzLjMwODk3NTExMzg3NjAxOTgzNmUtMDIsLTguNTQxNjEyNjA4MTQzNTQ1MDYwZS0wMSwtNy4xOTk0MDUzMjE0MTg5NDY4NDZlLTAxLC04LjkzNTc0NDAyMzE0MTkxMjc0MGUtMDEsLTEuNTYwMjM4OTA5OTcyODczNjIyZS0wMSwxLjA0OTA5MzE4NzkyMDAxMDI3M2UrMDAsMy4xNzA5NzQ3NzMyOTAxNzk2MjdlKzAwLDEuODk0OTk2Mzc1NDc5MTM0NjMyZS0wMSwtMS4zNDg0MTMwODc3NTYxMjAwMTBlKzAwLDEuMjY0OTgzMzI5ODU2MjU2MDU2ZSswMCwtMy4wMDc4Mzg3NjQ3NjAyNzExMjJlLTAxLC02LjYwNjA4NTkzOTc2OTkyMDA5MGUtMDEsMi4wOTg0OTQ3NzkyMzA1NTMwNTNlLTAxLC0xLjI0MDYyNDU5OTU1NjIyNzUwM2UrMDAsMi4yMjQ2MzE2NDAwODYwNjc3MzBlLTAxLC04LjgzNzU1MjMxOTkxNTQ5Njc3OWUtMDIsOS44Mzc3OTA2ODE1NDc1NjYwMzBlLTAyLDMuODE0MTYyNTQyMDkxNzA4NTc0ZS0wMSw2Ljc0OTIyNTcyNDA4MDY4MDUwMGUtMDIsMS42MzM4MDg0MTEyODkyNDkzMjFlLTAyLDIuODQzMTQ1MTg5OTc5NDQ1MjA5ZS0wMSw0LjE1NDAwNjI2MTcxMTI2ODMwMGUtMDEsLTEuMDMxNDgyNDYwMzE1MjU3Njk5ZSswMCwtMS40Mjk5OTEyNTg2ODU0NDg0MDhlKzAwLC02LjE2MzgwNTIxNzIyMTQ3NTUwOGUtMDIsLTEuNDMyNzM1NDg5OTM0MTA4MDQyZSswMCw4Ljc1MzE0NzA5MjE2NzA4NjQ3NGUtMDIsOS4zODc0Njg3NTY4MjMxMDA3NzllLTAxLDYuMDcxMTE2NzE5MTYwNDU4Njk3ZS0wMSwtMS4wNDgxNzA0MDY4MjU0NzMxMzNlKzAwLC04LjYwMjYyNDUxOTU3NTE4ODI1NmUtMDEsMy4yODMwMTI5NTAwMDc1NTM4ODdlLTAxDQo1LjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTQuMDEyOTc4MDUxMzM1MTAwNDM4ZS0wMSwtMy4xNjY1NTI5NTA1MjEwNjkzMzJlLTAxLDUuOTY5MDY0ODEyNDc5NTM4Njg0ZS0wMSwtOS44NzI4NjY5MzQ1NzY1MjQwODllLTAxLC00LjAxMjM0NzA5OTExMTgyNDMwMGUtMDEsLTguMDAwODI0NzYwODQ2MDEyNTczZS0wMSwtMS4wNDMxMjk0OTgwMzUzNTU1OTZlKzAwLC04LjU3MDc4MTg4NjcxMTY0Njk4MGUtMDEsNi43NzQ2MjE2OTM0NjQxMTY4MDFlLTAxLDUuMTgyMDM4OTQ4MjQyMTU2MjQ1ZS0wMiwtOC43OTE2MDYyODgzNTA3NDg0MjJlLTAxLC0yLjMxMTAxNjA3NTkyOTk2NTI3NGUtMDEsLTEuNjM4ODA3MzA3MTIyMTc3ODE0ZSswMCwtNy4zMzMxMjgwNzU4MzY2NTY4MjNlLTAxLDIuMTQ5NTc0NTM0ODY3Mjg2Nzc5ZSswMCwtOS4wMjQzODQ5NjY1NzUwNTk0NTJlLTAyLDcuMzE2NTg5MjcwMzAzOTI0ODA4ZS0wMSwtNi41NDg4Mzc1MTQ0NDgyOTgyNThlLTAyLDMuNDgxNjkyMzUyNDE4MDg2NTAwZS0wMSw2LjYzMjU4MDg5Njc5MTczOTg5OWUtMDEsLTEuMTA0NjE2NTk3NTI2NDcwNzg5ZSswMCwtMy4wOTM2MjU3MjczOTU4OTM3MTNlLTAyLDEuNTc4ODY1MTk0NDE2NDg4MjA1ZSswMCwtNy45NTUwMDU1MDA1MzI5MTAxMTJlLTAxLC01LjY2NDM5ODUzNzMyMjE5Mjc4NGUtMDEsLTMuMDc2OTEyNzczNjcwMDE3NDc2ZS0wMSwyLjY5MDI0MDczMTc2MjQ2NjU4NmUtMDEsNS4yNDkxNzg2MzY0NTg4MjY2NTJlLTAxLDEuMjY3NDExNjU0ODE4NjU2Njk3ZSswMCw0Ljk5NDk4MjMzNDY4NjU5NDU4M2UtMDEsLTYuMjA1MzEyNTc5ODMzNDAzMTQ3ZS0wMiwxLjI1OTE2NzEyOTYxMDgxMzc4NWUrMDAsNy4wNDExMTAyMjE0MTU4MjE2NTdlLTAxLC0xLjQ5NTY3OTUxNjI1NzAxNjIyOGUrMDAsMi41MjYzNjgyNDAzNTU5OTgzODVlKzAwLDEuNzY5OTIxMzg4MTk2NzMzNzI1ZSswMCwtMS42ODIxNDIyMjc2NzA3NDA5NTNlLTAxLDMuNzc5MTAxMDE3Mzg0NzUwNTcyZS0wMSwxLjMyNDM1ODc0OTk5NTgzOTEzNWUrMDAsLTEuNzIyMDA3OTI2OTY4ODI2MjY0ZS0wMQ0KNS4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDMuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDcuMzAzNTE3OTAzNzcwMTkzNjA5ZS0wMSwxLjEwNDU3ODQ3MzU3MTQ3NjUzOGUrMDAsLTEuMDE0ODI1OTA3NzM0NDQxMDM1ZSswMCwtNi4wMjMzMTg1MzU4Mjg2MjEyMDFlLTAxLDkuMjE0MDgzOTc4MTA1ODEyNTg5ZS0wMSw0LjYwODE0NDc3MTQ4ODMwNTAzNmUtMDEsOS4yMzc5NjU2MDMxMzk0Njg1NzNlLTAxLC0xLjMyNTY4MDE0NjUzNzE4MDM1OWUtMDEsLTIuODkwMDUyMTA5NTQyMzI5ODI4ZS0wMSwtMS45OTg2Mzk0NzU1ODMzNzI3MzhlKzAwLC0xLjE0NjAwMDQyNjUwNzQ0MzI3MWUrMDAsNC43MDY2MDk0NjU4NDkzNjkyODllLTAyLDguMjQ1NTcyMTk1NjQyMzY0NDMzZS0wMSw1LjMxMTc4MzY2NTM1Njk1Mjc4OGUtMDEsLTEuMjgyNDE5NzQwMjc3MDIwMTU5ZS0wMSwtMi43MTc3MTU2NjQ5MDY5NjY2OTllLTAxLDIuMTcxNzk2MzI2MzgyODAxMzQ1ZS0wMSw3LjgyMTExODEwOTIxNTIxNzkzOWUtMDIsMS40MDQ1NDU1MTQ5Mzk3MTE5MTRlKzAwLDEuNDY0NDA3NzA0NzgyNDk4NTQzZS0wMSwtMS40ODEyNDU5NjIxOTcyOTg0MjdlKzAwLC0xLjI3MjU1ODEzNTAzMjMxNjk2MmUrMDAsMS41MTg3NTkzMzY5NjM1ODAxMjBlKzAwLC0xLjE3MTE2MDQ2MTQ1MDA4MDM0OGUrMDAsNy42NDQ5NzQ1MzAzMzUzMzU1ODNlLTAxLC0yLjY4MzcyNzM1MjA5MzgxMjA4MGUtMDEsLTEuNjk3NTgyOTM5MDI0ODU0Nzk4ZS0wMSwtMS4zNDEzMjc4Mjc2ODQyMDExMTNlLTAxLDEuMjIxMzg0OTU5NDU5MTk4MzM4ZSswMCwtMS45Mjg0MTgyODU0Mzk2NDY3MThlLTAxLC0zLjMzMTkyODI4NDUxNTI5NTMyNGUtMDIsLTEuNTMwODAzNDk3Mzk5NDkyNjE5ZSswMCwyLjA2NjkwNTExNzA4MDAzMjg4M2UtMDEsNS4zMTA0MjUwNjk3ODA1OTY1ODVlLTAxLDIuMzkxNDU1ODA2NTM3ODcwMjEwZS0wMSwxLjM5Nzg5NjI2MTA4NjczNTM3MGUrMDAsNS41MTcxMzU0NzgwMjMxNzM5MTdlLTAyLDIuOTg5Nzc0NTYxMTkwMTc2MDM5ZS0wMSwxLjY0ODUwNDAxMDI2ODE3ODk0M2UrMDAsLTEuNTUwMDE0MTg5MzU4MTQ3ODMxZSswMA0KNC43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCwxLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLC00LjU1ODI1MzQ3Nzk5MzY4ODQwN2UtMDEsMS40MjYxNTg3NTIwMTkyNjYyMjllKzAwLDkuMzYxMjkxNDgzMTEwODI0MDQxZS0wMSw2Ljc4MzgwMDk4ODQwNDcwMzQ2OWUtMDEsOC4zMjY1MDczOTQ2NDQ3ODMxNzhlLTAxLDMuMjcwNjYyMDkxMjEwMjIwNzc5ZS0wMSwxLjYzMTU5NzQyNzUzMjI3MTU0OWUrMDAsMy43Nzc1OTE2OTczMDcxNzg4MDllLTAxLDIuMzk4NjcxMDU4OTUyNzg1NzA2ZS0wMSwxLjU4OTU4Njc0MTI1NjQzMjY3OGUtMDEsMS45Mjg2Mzk1NTU1MDM4NjAxODFlLTAxLC0xLjE1NzAxNzI4MDgxNTg2Nzg1NWUrMDAsNy43MDY3MzA1NDQ2MzM0MzMzMjJlLTAxLC0xLjMwNDM5NzMzNzgzMzI3MzIxOGUtMDEsMS44MjE5MTUwOTc4NjA0MDU5NTJlKzAwLC03LjU2NTA0NzA1ODg0MjI4OTExOGUtMDIsNC4yMDkxODI4NDE3NTY1NjU3NjNlLTAxLDIuNDY2MDIxODYyNjEzMzQ0MjczZS0wMSwtNi4yNTU1NzAzNTEwOTI1MzMxMjFlLTAxLDkuOTIxMzY4Mjg1MTg1MDU4MjAwZS0wMSwxLjkwNTA2MzY0MDU2MDAxNzY0NmUrMDAsLTEuNDc3NzIxOTY1OTg0NDc3NzIwZS0wMiwtMy4wMDQ3ODc4NTU4NTQyMjI5MjJlLTAxLC0zLjU1MDI4NzMxMDU1Mzc0MDgwNWUtMDEsLTEuODkyMzYxODkzMzE3MzQxMzkzZSswMCwtMS43NzgxMzE0MzcwMzAxMjU0MzllLTAxLDIuNTA5OTgxMTYwMDgzMjM5NDYwZS0wMSwxLjA1NDc1NzkyNTE4MDI4Mjc3NGUrMDAsOS42MDA0Nzc0MTE0OTkyNzg1NzllLTAxLC00LjE2NDk5MDgyNDM2NjkyNDgwNGUtMDEsLTIuNzY4MjI5OTQ3NzM4ODgzMzEyZS0wMSwxLjEyMzkwNTMwNTYxNDQzOTAyMWUrMDAsLTEuNzM0NjM4OTcwNzI4NzkxMjUyZS0wMSwtNS4xMDAyOTUzOTc1NTYxNjkzNDFlLTAxLDEuMzkyNTE4NDQ5NDM0MjcyMzg3ZSswMCwxLjAzNzU4NTY2NzA1MDYzNDA0MmUrMDAsMS44NzkxNzkxNzc0MjU3ODAyMzdlLTAyLC01LjkzNzc3NDQ3Nzc4NjY3NDc3NmUtMDEsLTIuMDExODgwMzE5MjQ0NzA5MDAzZSswMCw1Ljg5NzAzNjA1NTc0NzIzODk5MmUtMDENCjQuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS42MDAwMDAwMDAwMDAwMDAwODllKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtOC45NjM2OTcyMjU1MjE4MDE3MDRlLTAxLC0xLjk2MjczMjAwOTE0MDc1MjA3NmUrMDAsMS41ODQ4MjA1MjczNDkwMTc5MDVlKzAwLDYuNDc5Njc3OTEwMDk4ODgzMjc2ZS0wMSwtMS4xMzkwMDgxOTMxMTY5NjUzMjhlKzAwLC0xLjIxNDQwMTM4Mjk1OTI1OTAzNWUrMDAsOC43MDk2MTc4MjE3MTYxOTU2OTZlLTAxLC04Ljc3OTcwNjE2NTM1ODcwMTYzMWUtMDEsMS4yOTYxNDk4Njc1Mjc4ODMzMDRlKzAwLDYuMTY0NTkzMTI2MjYxNTUyNzU4ZS0wMSw1LjM2NTk2NTIwNTY2ODIzNDk4M2UtMDEsNC4wNDY5NTQ1NTYxNDMwMDMxNDZlLTAxLDEuOTE0NTA4NzIwMjM5MTE3ODM0ZS0wMSw4LjgwNTExMTk5MTc3MTEwNTE1MWUtMDEsLTQuNTQwODAzNjI1MTU2MDUxMjkzZS0wMSw4LjU5NTE5NzM0MzQzODQ2ODE5NmUtMDIsNy41MTk0NjU4NzY3NzE5NTY4ODBlLTAxLDUuNjI5ODk3MTg1ODYxMjc3ODUzZS0wMSwtMS4xOTQ5ODY4MDUyNjg2NjAzMDFlKzAwLC01LjAwNDA5NjY3MzA0MjYzOTQ5OGUtMDEsMi41MjgwMzUwNTQxOTE1NDUyODNlLTAxLC00LjA4MDE0NzA5MDM5ODk2ODk0NWUtMDEsMS43NzQ2NTg1NjA5NzMzMzMxODhlKzAwLC0zLjkzMTUzMTk0NzU0MTEyODY2OWUtMDEsLTEuNjIyMTg0NDc1NzY2OTA4NDk2ZS0wMSw3LjY5NDMwMTc4MTc3MzAzODU4NGUtMDEsMy4zMDUzMjc0MzIzNDkxNTc3MTJlLTAxLC0xLjQ1Mjc0NDU3MjA0NzY5MjI1MWUtMDEsLTcuNTY0OTM1Mjg4ODA3NDgyNzgzZS0wMSwzLjAxNTE0MDU3Mzk2NzY2MTc3NWUtMDEsMS4wMzkwOTY0NDAzNzgzOTI2NjFlKzAwLDQuNzkwOTUyMjQwOTgyMjg1NzgxZS0wMSwtNy43ODE4MzUyMTQ1NjEyMjI0MDJlLTAxLDEuNzM2Nzc0OTU2OTc2NzEwODA0ZSswMCwtMS40NDY1Nzc4OTAwMzU4OTQzMjBlKzAwLC0xLjU4MjY4NTY0MTgwMjc4OTAzNGUrMDAsOS42MDU1NzIyNDQ1NzIyODM1MzZlLTAxLDIuMjU4NDA0Nzg2MDI2OTAxMDM0ZS0wMSwtNS40OTQ5ODU0NjMwNDA0MDI2OTZlLTAxLC0xLjA5ODU3MDcyNzU1NTMyOTU4NWUrMDANCjUuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwyLjMyMDc5OTgzOTI4MDI5ODIwNWUrMDAsMS4xNzA5MDg3MjE1NTQ0MTk0OTZlLTAxLDUuMzQyMDExNzA4NDU3NzE0NTU4ZS0wMSwzLjE3ODg1MDk3MjM4MTgxNTkwOWUtMDEsNC4zNDgwNzk1NzczMTE1NzkzNDdlLTAxLDUuNDAwOTQ0NjA1MjQ4MDU5MTk0ZS0wMSw3LjMyNDI0MDA5NzU0ODc2MjA0MWUtMDEsLTMuNzUyMjI0MDA3NjA2NzI3MDMwZS0wMSwtMi45MTY0MTk4NjM1MTg0NDU3MzJlLTAxLC0xLjc0MTAyMjgwODM1ODkwMTQ0MWUrMDAsLTcuODAzMDQ0MDY1MDE1Mzk0MjcxZS0wMSwyLjcxMTEyNzk2NDQ2NzE0ODc2NWUtMDEsMS4wNDUwMjMzNzU1MDI2OTA1MzJlKzAwLDUuOTkwMzk1MjYzNzYxODQwNzI3ZS0wMSwtMy40MDY5MjM0Mzg3NzkzMDQ1OTJlLTAxLC0xLjI2MzE3MjkxMjA4NTE1NDI1NGUrMDAsLTIuNzc3MzU5MTQ1NDI3NDMzMzQwZSswMCwxLjE1MTczMzk3NDc4MDc5OTA4NmUrMDAsLTUuODkyMjg5ODY1MTAxNDk3NjU5ZS0wMSwtNC40ODQ2NTAwNjIwNDA1OTI2ODhlLTAxLDEuMzE1NzM5Njc5MDgwNjg3MTc0ZS0wMSwtMS40MDU1NjAwNDczOTE4ODk4ODllKzAwLC0zLjQ5NzgyMTgwMTExNTM2ODg4OWUtMDEsMi4wMjM0NzE5NDk3Njk5NzQwMjFlKzAwLDUuMDUzODY5Mzg1NzczNDI3MzcwZS0wMSwzLjU5MjQ5MTU2NTEzNDU2NDAyNGUtMDEsLTEuNTgyNDk0NDc3OTgxNzU4NDYzZSswMCwyLjI0MzYwMTg5NDU4MjY0MDM2NmUrMDAsLTEuNDIyNzk0OTA4NjI2MzQyNzI1ZSswMCwxLjkyMjMyNDc1NTQ0NDM5ODUxNGUrMDAsLTIuMTE1MDU2MDE1MTg3ODA3NTAzZSswMCwxLjQwNTM2NTQzODcyNDQyMDMyNGUrMDAsMS42MTgwNTQyNjkwMDAyMjU1MzFlKzAwLC04LjI0NDA5MTIxMzI3ODM0NjE1M2UtMDEsNC4yMjU4MDM3MjI3Mjg4Mjc1MzhlLTAxLDUuNDc0ODA1NzIxMDQ2NjUwNTMxZS0wMSwtOC4xMzc5NDQ4MzIzMTMwNTg3NjNlLTAxLC0xLjQ0OTExNzYxMDczNjkzMDM1MWUrMDAsLTEuMzE3NzE3MzQzMTQwNzY1Mzg1ZSswMCw1LjQxMDA4MjE5OTU5ODA3NjM0N2UtMDENCjUuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSwtOC41MTE1NjAyNTE5NDA1NzM5MThlLTAyLC01LjY0MzAxMDMzMzAyMTYwNDE1MmUtMDEsOS42Njc2ODAxMTE2NjQ2MDE2MTdlLTAxLDUuMDgwNjc5MDkzOTE0Nzc3MjMzZS0wMSwtNy41NTQ2MjcyNjM2NTYzMzM4NThlLTAxLC0xLjIwMTIwMTUxOTAxNzM4OTI1MmUrMDAsNS4yMzI2MTczODY4ODA3NjkwNTBlLTAxLC01LjM3NTgzMzY4NTU4MDYxODgwNGUtMDEsOS45MjA0ODYyNTMxNTAyNDMwMTdlLTAyLDEuNTc2Mjk4OTcyNjI3NzE3Njc2ZSswMCw1LjAyMzI4MjQwMDc0Nzc5NjA4NGUtMDEsLTguNjIyNjY5OTk3NTMyMzY3MjkyZS0wMSwxLjYwNjYxMTg5ODE5NzcyODE1MGUtMDEsLTkuNTI2NDQ5NTI4MTUzODc3NDY2ZS0wMSwxLjYwODUyMjE1NTk0ODcyMzcyMGUrMDAsLTUuNjE1Nzg3NDk2MDMyMjA4NTAzZS0wMSwyLjA3MjcwNzQ2OTczNjE4NjM1OWUtMDEsMy4wNzczMjU3NDY3OTQzMTk5MTZlLTAxLDEuNTkyNTA0NjgzNzM3MDI0MzYyZS0wMSwtMS45NTg1NDg5NTUxMzY1Mzg3MDVlKzAwLC0xLjQ0NjQyMTA2Mzk4MzMyODU5MmUrMDAsLTQuNTIzNTAyNzU1NjkwOTE2ODY2ZS0wMSwzLjE5NDMxODMzMzMxNTMwNjM0NmUtMDEsLTEuMzc3NzkyMTQyODU3NzA2NjgxZS0wMSwtOS41NzE0NzQ3MzE1MTAxNjc4MTBlLTAxLC0xLjM0ODQyNDMxOTEyMTcwMDkwOWUrMDAsLTQuMDE1NTc1NDQ0OTkzNDM2MTA1ZS0wMSwtNC42ODQ3NjA0NDY3OTcyMzE0NzBlLTAxLDUuMTI4MzY0NTc1OTI3NTY2NDQ5ZS0wMSwtMy4yNjMxODQ2MjE1ODMxODExMjJlLTAxLDYuMDI3MDc2NTY0MjkzMjk1NTI0ZS0wMSwtNS45NDY0OTc2OTcyMDQwNTM5NjdlLTAxLC0yLjU1OTU3NjY5MjE0MjY4MzI0MWUtMDEsLTMuNDgwNDYzNzk2NDI2MTk0MTkwZS0wMSwtNy44MjM2Njk2NjkwMjA4OTczMzNlLTAxLDYuMjUxMTg2NTY0MzM3MzAyMTMyZS0wMSwtOC4xMzU5NTk5NzA5NDUwNzAyODVlLTAxLC01LjIxNjQxNTA5OTcwNjE4OTc3M2UtMDEsLTcuMzExOTY0NTk0ODE5NzIzOTk1ZS0wMiwtMS4yOTczNzk2NTU5NTY3Mzk4NzVlKzAwDQo1LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsNC4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTMuMjQ5MzQ5NTgzMjA0OTkxMjMyZS0wMSwtNy4xMTMwNjM1OTc0Mjc4ODU1MjBlLTAxLC0zLjg4MTU0MTkyNDgyMjQ5NTgyNmUtMDEsLTUuOTkyODAwMjY3MTA5MDYyMTYyZS0wMiwtNy45OTkxMzYyMzE0MDY2NDcyMDJlLTAxLC0yLjIwMDc1Nzc5ODIwMzU1NTg4MmUtMDEsMS4zMDg2Njg3NTIzNTIxNzkxNjVlKzAwLC0yLjU3OTg1NTgyNTQ0ODcxMTExNWUtMDIsMS4xNDUyNjIxNzMwMTkyMjQ3MjdlKzAwLDMuNDY0OTQ0NDIwMDY3NjA3MTY3ZS0wMSw3Ljc0MTYwNjA5ODE4ODE2NDAzMWUtMDEsLTcuNzQ0NTg5Njg3NzA4MjU4NzMwZS0wMSwxLjA0OTA3MTY1MDg1NTEyNzE4NmUtMDEsMS4zMzkxMjkyMjYxNTQ3NTkxMDBlLTAxLC02LjEyNjI1NzM4ODc0OTM1NjU0N2UtMDEsLTguMjI4MjgzMjQyOTQyODE3NjU1ZS0wMSwtMS40OTAyNjUzODc5MDcyOTgyMzNlKzAwLDEuNDk2MTM5NjM2OTUxNjMxOTkwZSswMCwtOS43MjQwMjg4OTM1MjQ5NzYzNDdlLTAxLDEuMzQ2MjIxMDczMjIyMzAwMTEzZSswMCwtNC42NzQ5MzE3MzY1Nzg1MzQ3ODBlLTAxLC04LjYyNDkzMjk5NzI0NzMzODc1MWUtMDEsNi4yMjUxOTE0MDMwNDk5NzY2NDZlLTAxLC02LjMxMTkxOTQxNzQ2ODU3MTEwM2UtMDEsNS42ODQ1ODkxODkyNDI3NjkxMjVlLTAxLC0zLjMyODExNzY0ODUyMjA5NTkwNmUtMDEsNC44MDQyNDQ5NjExNzc4Njc1OTBlLTAxLC05LjY4MTg2MDYzOTA3MTA0OTMyNGUtMDEsOC4zMTM1MTA1Nzk4NDc2ODI3MTNlLTAxLDQuODc5NzI2ODI2NjMwMDQ1ODY2ZS0wMSwtOS4xOTY1MDY5MDA2MjY2MTc1NzZlLTAxLDIuNjQyOTM1NzIxMDE0NzQxNzIzZSswMCw1LjQwMTIzMDI2NDAwNDk0MDMyOWUtMDEsMi4yOTA0NjcwNzA1MzA1Mzg3NzNlKzAwLDEuNjAwMjY3ODE4NzQ4NzU5MTE5ZSswMCwtMS44ODgzNDc4MDIxNzc4Mzc5ODZlLTAxLC00LjEyMjcxNzU0NjA0NTQyOTA2MGUtMDEsLTQuMDM0NTkxODM0MjA4MDEyMjYyZS0wMSwtMS44MzAwMjg1NTA0Mjc4MTAyMDhlKzAwLC02Ljk1ODM1MTE5MzQ5NTQ3MzM3NWUtMDENCjQuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSwyLjQ2NzY2MDIzOTc5OTcwNTc3OWUtMDEsMS41MjU5NTc1NjA4ODQ4MDgzODRlKzAwLC03LjcyNzcxODgyOTc4MjAyMDk1OWUtMDEsOC44MjA1NjU5OTM2MzAxMDYxODNlLTAxLC0xLjI1MjU5MzM0MTUwMzMxOTAyNGUrMDAsLTUuODYzMjAwMjUyMTExMzIzNTYzZS0wMSwtNC41NzY0MDU5NDI4OTUyNTk3MDRlLTAxLDMuNzE4MTEwODE0OTc0OTM0Nzg2ZS0wMSw0LjU3MzA5NjQ2NzIwODExMjU4MWUtMDEsOS42MjM0MTc0NDgxNDM0NTIwMTNlLTAxLDcuNzA4MzY5NjA0MDQ5MzY2NTUyZS0wMSwyLjQzMTY4MjE1NDAyNDkxNzI3NWUtMDEsMy45MDM2NDk0MzUwODYyMjM4NjJlLTAxLDEuNTg4NTMwNjkxMDk3NTMyNTMyZSswMCwtNS4xMDkyNjE4MTIzMjI2MzA3NjllLTAxLDcuNzQ3MjgzMTkwNjcxNjIxMDc4ZS0wMSwtMS44MDgxNDM5MjY0OTgyNTE1MDhlKzAwLDQuMTEzMzQyNDI4OTc2MDg2MTUxZS0wMSwtNC44MzI0OTU0MjQ3OTEwNzM5NjhlLTAxLDIuNTcxMTgyNDMxNTEwMDI1MTc2ZS0wMywxLjA0MDA4NjI0NTA1MzcwMzE3M2UrMDAsMS42NDY0MzgwOTUyNjM5NzYyMjBlLTAxLDguODUxODc1NDEyMDg5MjcyODY1ZS0wMSwxLjQ3Mzc2NDgxNTEzODQwNDg0OWUrMDAsMy44OTA5Mzk2ODg2NTcyMDU2MzFlLTAxLDEuMTcxMDQxMDY0NjIwNDg4MjkyZSswMCwtMy4yNjU2MDk3NzY3OTIwNzcyMDFlLTAxLC04LjIwOTg4MjI2OTYxNDA0NDU3NWUtMDMsLTUuMjI2MTk0MTYzOTg0Nzc5NzYxZS0wMSwxLjA0Mjk3NzU5NDY0NjM3NTk2MWUrMDAsNC4xNDA5MTM1Mzc5MzU5NTA3MzllLTAxLC01LjA3MjM0NDYxODk0OTIyNjA1OGUtMDEsMS41NDY2ODgzMzY0NjMzMjE4NzhlLTAxLDEuMDQxNTY4Mzg4ODE4NTgxODI1ZSswMCwtMy45MjY3OTkxMDM3OTUzMTg0MzVlLTAyLC05LjQ4OTMyODEwODQ5NzYzNDQxOGUtMDEsMS4zMTkxMTc1NTc4NzQxMjIxMDRlLTAxLC0xLjk4MDU2NTU5MTA2ODkzOTcwMWUrMDAsNy42ODc3MDY0NDM5OTQ3NDk1NjFlLTAxLC00LjIxMzI3NTg3MzI0NjgwNTA4MWUtMDENCjUuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwzLjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS4xOTk5OTk5OTk5OTk5OTk5NTZlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtNC42OTMxMDczNjI3OTEwNjc0MzhlLTAxLDguNzU2OTU2Nzg3Nzk1MDY3MTQzZS0wMSwtMS4zNjUxNjI4NzcyMjUxNjg3MTRlKzAwLDEuOTQ3MDk4NjQyODIwMzU3ODI4ZSswMCwtNC44MDI0MjA0MTczODIyMzMyNDJlLTAxLC01LjIzMjUwOTQzMzg0ODk1MDg0MmUtMDEsMS4wMjEyMjQ3NDMxNjcxNjMwNTJlKzAwLDcuMDg2OTUyNzMxMTA0MjY1NzEzZS0wMSwyLjQ1MTIyOTcxOTA3NTA3NjAzMGUrMDAsLTIuMTEyMDU5ODM2MzE1MTk5ODkwZS0wMSwtMS4yMDQwNjYzODY2NDQwOTczMjBlLTAxLC0xLjQ3OTMxNTk3OTk2MzI1MzU5MWUrMDAsLTMuMzIxMDIyNzczNDg4MjUxMzY3ZS0wMSwtNy4yMTQzMTI5NTU3MTc1NTc4MThlLTAxLC00LjQ4NzY3MDEzMTA1NDk5MTU3NGUtMDEsLTEuNzQ0MTg3NzU2NTUzOTU1MTkzZSswMCwxLjY2MDYwNzU1OTg5NDUxNDAyOWUrMDAsLTEuNDE2NjAzNDgyNDI1NjQwNjAzZSswMCwtMi44MDIyMDI3OTgzOTE3MTMwNDZlKzAwLC0xLjE4ODQyNDQyMTU4MzAxOTMwOGUrMDAsLTYuMDM4Mzk1NTI3OTYxNTA5ODAxZS0wMSwtMS4xNDk1NTQwNjMyNTcxMTgxNzVlKzAwLDEuMDk4MzAzNTQwNzMyNTEyMzUxZSswMCwtMS4zNzgzOTE3ODU5NjA5Mzg0NzZlLTAxLDIuNTM4NTYwNDQwNjQ1ODk4NzExZS0wMiw2LjEwMzkxNzY0MzA1NDEyNzU0MGUtMDEsMi44NjAxMjUyNjk3ODExNzk2NDdlLTAxLDkuNzg1NjcyOTc0NDYwNDI5ODI5ZS0wMSwtMS4xMDk0Nzc1NTM2MzYxNDUxOTdlKzAwLC01LjQ3NTE4MTAwNjc5NDMxNzQwN2UtMDEsNi42NTk2NzE0NjA2OTUzNzc3NDNlLTAxLC0yLjUzNDU1NDQ2MjA4NDIyOTk2NGUrMDAsLTEuMzc1MTg0NDc5MzE3MjQwNzQ5ZSswMCw1LjAwOTkyMjMyMTc5OTQ2NTk1MGUtMDEsLTQuODAyNDkwMzQ5OTQ5MjU0Mzg5ZS0wMSw5LjM2MTA3NTUwMTA5Njk3NTk0OGUtMDEsOC4wOTE4MDI5Njg1MzE2MjcyODNlLTAxLC0xLjE5ODA5Mjg4MDE5MTAzODIxMmUrMDAsNC4wNjY1NzA4NzQ2Njg4MTE3MzBlLTAxLDEuMjAxNjk3ODU1NjY3NTA2NDIwZSswMA0KNS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDMuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjMwMDAwMDAwMDAwMDAwMDA0NGUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuNDc0MzQ0MDE2NTA5NzE5MDgwZS0wMSwtOS43NzQ2NDg3NzI0NTg2OTE2ODFlLTAxLDguNzkzODk5NDE5MTMzNzAwNTQ2ZS0wMSw2LjM1NDI0NTI2NTUzOTk1NTA1N2UtMDEsNS40MjYxMDc4MzQ5ODc5NjMyMzBlLTAxLDcuMTU5Mzg4OTM0MzY5OTE2ODU3ZS0wMSwtMi45OTQ2MTI4NjAyMjc2MTg5NjdlKzAwLDguODA5Mzc1NjEwODA5NzE1NDI5ZS0wMSwxLjgwODEzMTgxMDU3ODk3NTQyOWUrMDAsNC4zNjYzODQ3NDYyOTI5MzAwNTJlLTAxLDEuOTI3Mjg5OTY0OTk3MjY4MjkwZS0wMSw2Ljk2NDM4NjczMzkxNDM5Mjc4MGUtMDEsMy4zODIyNTQ3MzY4NTExNTI5NjVlLTAxLDYuNTE3ODEyNjE3MDA2MTYwMTAzZS0wMSwxLjQ3MTAwMDI0NTQxMDgwNjM0NWUtMDMsLTcuNjY3MDQ4NTQ1MzY5MDAyOTMyZS0wMSwtMS4wMDQzMjI3MTIyMTQ2MTM0NDRlKzAwLC05Ljk4MTkxNzI4MjMxODY0MDgzOGUtMDEsLTEuMzczMDQyNTUwOTUwODk1MjI0ZSswMCwtMS4wNjc3NDIwMTEwMTkxMDY0ODVlKzAwLDEuNzYxMjY2MTI3NDE5ODYzMTAzZSswMCw3LjU0MDk1NjYzNjU2MjQyNjk4NWUtMDEsLTYuMjUwMjczOTA2ODQ2NzEyODAxZS0wMSwtMy45MDM5MjY5Mzk4NTUwODA3NjllLTAxLDEuMTI1NTc1MzA5MDY0NTQyODk1ZS0wMSwtNi41NTU0NTAyOTQ4NDM1ODExMDVlLTAxLDYuNzUxNjg1NzE3NDMyNDg1OTY3ZS0wMiw3Ljc3NjA0MTM3OTAyOTEyMDUxNWUtMDEsLTMuNTc0MjczMzU0ODE3MzQ4NDUzZS0wMiwzLjM2MDE1NzQyNjYxOTkyMTMzOWUtMDEsOC44NjQ5MTUzOTM1OTYxNTg4NzdlLTAxLC0yLjcyMTMxNzU2MDE4MjA4MjE1MWUtMDEsMi44NDc5MDU5OTEzNDM2MzE2NDllLTAxLC0zLjA5Mzc3NTkyODgzMzYxMzYzMWUtMDEsLTIuODUyODg2OTgzNDQxNjM5ODkzZS0wMiwtMy4yNDczMDI2NTA4Mjk1OTk5MDJlLTAxLC01LjI4ODY5ODUzNTU2MTE1MjY1OGUtMDEsMS43MzcxMTg1Mjk4NzAyMzQzNTFlLTAxLDUuNjY1NDUzMTU4MTgyMTI0MzYwZS0wMSwxLjQ2MzA0NDQ2MDAxMDQ0MjUyN2UtMDENCjQuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSw0Ljk4NzI2OTU4MzExOTMxOTc4MmUtMDEsLTcuMzc5MzE3ODAyNDEyMjk4NTEwZS0wMSwtMS4yMDM3MzUxOTIxOTk3Nzk0MjVlKzAwLDQuMTcwNDM1MDI5Njc2MDM1NjMyZS0wMSw2Ljg3ODgxMzkxMTc0NzU0NTUyOWUtMDEsNC45ODU3MjY2NTk5ODIyNjQ3MTllLTAyLDEuMzQ4MDM1NzgwNDI0NzE4NzIxZSswMCw5LjA3Njk4Nzk3OTg3ODk4NjUzNGUtMDEsMi42ODA1NzA4NDA3NjkwMDA1NDBlKzAwLC0yLjAwODA4NTEzOTk1NjY1NTcxOGUtMDEsLTkuOTg4NDg3OTYwOTUzNjgxNDEwZS0wMSwtNy40MDEzNjc5MDczOTUxMzU1MDRlLTAxLC01LjY1NDk3ODA2Mzc0NjU2Mjk3N2UtMDEsNC43NjAzMTM4MzQzODExNDUxOTNlLTAxLC0yLjE1ODA2ODU2Mzk2MTI1NjkwM2UrMDAsMS4zMTg1NTEwMTgwOTA4MzY2MzVlKzAwLC0yLjM5Mjk2NTkxMTQyMzQ0MTM5NGUtMDEsLTIuNDY3OTM1NTc3ODg3NTE3ODI4ZS0wMSwtMS4wNzkzNDMxNjYwMjQ5OTUyNDllKzAwLC0xLjE0MjI1NTUxNDUwMTgwMjA3MmUtMDEsMS4zMjM5NzY3NjY3NTMzNTUyMjVlLTAyLC0xLjIxOTQ0OTI3NjAwMjc3MjY3MGUtMDEsMy4zOTA1OTI1NTk0MjQzMDQxNTNlLTAxLC01Ljg5NjMyMDQxOTUxMDI5ODA2MWUtMDEsLTguOTU4MTU3NjA0MTA4MjcxMTEwZS0wMSw1LjQ4MzI4MTMwNDk3OTc5OTA0MmUtMDEsOS44NjY3NDUzODE1Nzk1NjY5MzFlLTAyLDEuOTcxODEwNTUxOTczNjczOTQyZS0wMSwxLjA1OTAyNzI1NDQ0MTk2NjMyNmUrMDAsLTEuMDIyNTY0MzkxMjYwNjg1NjU3ZSswMCwtOC41NTI0MDQ1NzI1MDg2NDE3MjJlLTAxLDEuMjU3MjE5NjUwODI4OTk0MTE3ZSswMCwtMS40ODI4ODMzNTc1NzQwNDI1NDllKzAwLC0xLjMwOTQxMjE0NjMzMTAxNDIxNWUrMDAsOC4xNzg2MTgzMTE4NDk5NTc4MDBlLTAxLDIuMzgyMDAxOTIwMjIwMzg2MjYwZS0wMSwxLjA1MjMyMTM3MDU5Mjc1ODUxNWUtMDEsLTkuMTY1OTQwODEwMDM4MzE4NTY1ZS0wMiwzLjEyNjc1NDcwMjc1Njk0ODExMmUtMDIsLTkuMjExMjExNDY5MTk1NTkxODA2ZS0wMg0KNC40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjMwMDAwMDAwMDAwMDAwMDA0NGUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuMzU1NDQyNzAyNTk0NDE4MjM2ZSswMCwtMy45ODE0ODEyODc1MDA3NTEwMzJlLTAxLC0xLjYxMzczNTM2Mjc3Nzc5MTcyNmUtMDEsMS43OTQ0NDg4MDUyMjUwNzM1NTFlKzAwLDIuNzUwOTcwMjAyOTgzNTgwMDk2ZS0wMiwyLjIzMjAxNjM4OTUyNTE3NzY2OWUrMDAsLTEuMDQ5Nzk3MDEwMTg5NTM1NTU3ZS0wMSwxLjM2NzQxNDk4MjQ2MDE1ODQ2OGUrMDAsLTEuNjU1MzQ0MDM4MzA5Njc3ODAxZSswMCwxLjUzNjQ0NDYwODE1NjY2Mzc4M2UtMDEsLTEuNTg0NDczNTYzMTUwOTM1NDYwZSswMCw4LjQ0NDU0MzA2NjA0NTg2MzEzM2UtMDEsLTEuMjEyODY3ODE2MjA5MDI0NzI5ZSswMCwyLjgzNzY5NTU0MzgzMzQ1NTAxNGUtMDEsLTIuODIxOTU4NzY2OTA0MzUxMTAxZS0wMSwtMS4xNTgyMDMxODUxODQwMjg4NzJlKzAwLC0xLjYxOTM1OTk4Mjg5NzU0MjQ2MGUrMDAsLTUuMTEwNDA0NjM1ODAxMDk3OTM5ZS0wMSwxLjc0MDYyOTQ0NTg5NTMzMDg2MmUrMDAsLTIuOTM0ODUwNTQ4ODkzNzc0ODM1ZS0wMSw5LjE3MjIxNTQyMTE1ODU2MDQ3OGUtMDEsLTUuNzA0Mjg2NzY2MjE4ODE0ODY0ZS0wMiw4Ljc2NzI2NzczNjkwNDUyMzc2N2UtMDEsLTEuODI2OTExMzc4MzA0NTE3NjY0ZSswMCwtNC4wMzE4ODMwNjg0OTUzMzMyODllLTAxLDkuNDk0MDU1MjM3OTMyMTg3NDE5ZS0wMSwtMS42MzI1NDk0ODgzMzE3ODczMTNlLTAxLC04LjY0NTUyODI3MTEwNDcxMzIyNWUtMDIsLTQuMzA0NjE5MTE4ODU3OTI5Njk0ZS0wMSwxLjE0OTM3OTM4MzM2NzEyMzk3NWUrMDAsMi45NzUxNDM1Mzk1NDk0NTkwOTNlLTAxLDQuNDAyMjI3NjE3NTM0Nzk3MTMzZS0wMiw2LjQzMDU0NTQ1MzM5MjkyNzM4MGUtMDEsNS44ODIyNDkyOTExNzkzNjY2NzllLTAxLDIuMTI1ODcwNDY0Mzc1MzY1OTIwZS0wMSwxLjU0NzAzMTQ5Njk5MDg0NDUyNGUrMDAsLTYuMDI4NzUzMzYzOTExOTAzOTczZS0wMiwyLjc4MDgxMDQ3OTY3OTQzOTcyOGUtMDEsLTYuNDI5NTI1NTMzNTI4OTA0NzY4ZS0wMSwxLjUwMTE1MjI3MDA2MTI5MTk4MmUtMDENCjUuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwxLjU4Nzc2MTUyMzc0NTM2NzQ5OGUrMDAsLTYuNDMyNTc2MDE3ODg3Mzg4MDg3ZS0wMSwtMS4xMzM1OTI4MjU2Mzg0NTg4NjdlKzAwLDkuOTY3NTk2NDI4MTk4MTU1NTAwZS0wMSwtMS40ODc2NjE1MjIzMzY3OTI1NTJlLTAxLDkuNjAwNDIwNDk2OTc3MDAxMDA2ZS0wMiwtNC41MTEzMzAzNjkzMzM0ODEzNjBlLTAyLDcuOTEyMTcyMzkyOTUzNTA3ODgyZS0wMiw4LjUwNTMwNjgzNTIzNDM4MTkxM2UtMDEsLTguMzkxMjQxOTA1OTkyNzM2NzgzZS0wMSwtMS4wMTE3NzQwODQxMDU0ODg1MjVlKzAwLDguNDk2ODEzNzAzNzcwNzY2OTQ2ZS0wMiwtMS42MDY0Mzk2ODk0NDk4MzI3MzFlKzAwLC0xLjM3MzA1MzUzNjA0MTkyODQ4MGUrMDAsMS44NjY2ODMxNDgzMzE2MjcwNzNlKzAwLDcuNTc0NjgzMzAwNjE0MDM5MDUwZS0wMSwtMS4wMDU2NDcxODY5MDE0NTM4MjdlLTAyLDEuMjM4MDA2OTM1OTU4NDM5ODAzZSswMCwtMS4wNDA1OTkyMzAwODUxNDQ5ODhlKzAwLC0zLjE1NjAzMTIzMzg1ODU4MjE5N2UtMDEsNi4yMzQ1MzYwOTQyNDM4MjQzNzhlLTAxLDguOTA2NzE2ODE0MzEzOTQ3NDYxZS0wMSw1LjEyOTE2ODQ2ODI3Nzc2Mzg0OGUtMDEsLTIuNTQxMjM4ODA3Njg4MjI0NjMyZSswMCwtOS42ODA4MjExNzY2NDU3Nzk2ODBlLTAxLDQuNzcwNjgwOTIzNTY4NjUyNTg3ZS0wMSwtMy41NTk1MTQ5MzA0NjgwNjM0NDNlLTAxLDIuNTQwMjMxNjIwNzU5MTcxNTI3ZSswMCw5LjI2NTU4MzAwOTY3MDk2NDU5OGUtMDEsNS41ODA4MTg4MDYxODY2NTgxNTRlLTAxLC0xLjExNjk0OTU1Mzc0NjcyMzU1NmUrMDAsLTMuNTI5NjczOTYwMjkxNTU1ODM0ZS0wMiwyLjQxMjAzOTY0MjE4OTUyNTE1N2UtMDEsMS4xMjc3ODM2MzAxMjc4MDIzNjFlKzAwLDguODExMzEwOTcwOTk2MzIzMzIyZS0wMSwxLjAzMjk4OTE5NDUxOTk0NTY0MmUrMDAsLTkuMjM5MTIwMTU4MTAwMDIwNDA4ZS0wMSwxLjQxMjE1MTY5ODI5ODYzMDg1M2UrMDAsLTEuMzgwNDMwNzUyMzA3MjY5MTkzZSswMCwtNS4zNTkxNDU2MTY2NjE2MTgwMzllLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsNC4zMDc3MTEzNDk0NTY0MTQ1NDBlLTAxLC0xLjQ5ODkxNTkxNzMzMTM5MzE3N2UtMDEsLTEuMDA2MDM2ODU3OTIwMzkxNTQ3ZSswMCwtOC4yMTU0OTgyNTYwMzEzMjYxMDhlLTAxLC0xLjU0ODI1NDMyMjg0OTA0MjQwOGUrMDAsNS4zMTk3NDYzOTAwNzE5MTMzMDBlLTAxLDEuMjYwNTY4ODQ1MDQyMTQ5Mjc3ZSswMCwtMS4wMDM5MzUwMzQwMTM2NjAxODhlLTAxLC00LjAwMzQ4ODE1MDEzNDIzMzk4MGUtMDEsLTEuNDcyMzIyOTI4NDY2NDg5NjAwZSswMCw5LjEzMjAxOTI0MjUyMTc3NjEwM2UtMDEsMi4yMTEzMDQzMzMyMzk0OTMwNDdlKzAwLC0xLjc5NzQ1NTgwNDM2Njg5NzU1OGUrMDAsLTEuMDYzNDMyOTM4MTU0NjA2ODIyZSswMCwtNi43OTU5MzA0MjU0NDE0NDA5OTJlLTAxLC01LjY0MzE3OTA5NjgyNDg4OTYwN2UtMDEsMi4yNzM0NTk1MDE0MzQ4MDk5NjBlLTAxLDEuNjE0MjQ5NTQ3MjgwMjI3NDA0ZSswMCwxLjAwODU5NzI4Njg2MDEwMzYzN2UrMDAsNS4yNzU5NzM4Mjc3NDMxNTg5MjhlLTAxLC03LjIzOTI4NzA0MDU4NjAyMTAxNmUtMDEsLTEuMTE5NjI4MjMzNjgwNDU0Mzg4ZSswMCwtNy45Njc3NTMwNjMwNjMwMDg5MDBlLTAxLDEuNTQ4MDY2ODAxMzc4NzM4NjQ0ZSswMCwtNi4xNzQzMzAxNDU3OTAxMDcxNjZlLTAyLC00LjQ2ODM2MjUzNjYyNjIxMTk2N2UtMDEsLTEuODM3NTU3MzAyNDk5OTIyNTUxZS0wMSw4LjI0NjE4MjE5NjM4NDY3NzA4OGUtMDEsLTEuMzEyODQ5Njc0NTQ5NzkxNzM0ZSswMCwxLjQxNDg3NDEzNTkyMjQyMjM5M2UrMDAsMS41NjQ3NjI1Njk0NjI5ODk2MzllLTAxLC0yLjE2MzQzOTc4Mjk1NzI2MTAyNmUtMDEsNC40Mjg0NjExMzc0NjczODk4OTZlLTAxLDIuMTgzOTcwNzMxMjk5MzcwMzA1ZS0wMSwtMy40NDE5NjQ1NjQ2NzM4MTIyODhlLTAxLC0yLjUyNzEwNjcyMDQxNjA2Njg3NmUtMDEsLTguNjg4NjI1NDY4NjU5NTIyMTIyZS0wMSw2LjU2MzkwNzUwODU5MzAyNDI5OGUtMDEsLTUuMzE5OTM4MDk0MTExNjE4MTEwZS0wMSwtOS41NjI1ODQyMjQzMjI4Mjc2MjBlLTAxDQo0LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMi4yOTk5OTk5OTk5OTk5OTk4MjJlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsMS42NTg2MzUyMjY1MzUzNzMyMDhlLTAxLDEuMzI5MTQxMjgyNzQ1NTUzMzIxZSswMCwtNC44MzQ0NjIzNzc5ODE5NjE0ODllLTAyLC02LjA4MTAxMjU2OTUxNjg5OTI4MGUtMDEsNC4wMzg5NjAyMDgzNTk3MzgxMjRlLTAxLDEuOTM2NzEyNDYyNDAyNTUyMDE1ZSswMCwtMS40NTE5MDU1Mjk0MzE3NDczMzNlKzAwLDMuODIyMDI3ODc3ODUyOTM1OTYyZS0wMSwyLjA1MDg2NjI1MjMxODUzODA4NWUtMDEsMS4xNjE1MzM4MDM1NTkxMTcxNzNlKzAwLDkuOTA5MDkxNzM2ODQ4NDUyMTI1ZS0wMSwtMS44NjcwOTExMTgwOTc3OTIyNjhlLTAxLC0xLjY4NDUxNzI1NTQyNDg4Mjg0MmUrMDAsOC4wNjU2Mzc2Nzg5NjI1OTYwOTFlLTAxLC04LjM1MTkyNjkwMTkxNDgzMTIyNWUtMDEsLTkuNDY3NDA0MTA5NTcxODk1MjY1ZS0wMSwxLjE0ODM1MDU4MDY5MTEyNjI3N2UrMDAsLTkuMTA4NTAzNzc2Mzg2NTI1MDg2ZS0wMSwxLjQwMjg0NDc0MDEwMDI0MzI5M2UrMDAsMy4zNTg0NDcyMTQwNTMxMzAxODFlLTAxLDMuMTkxMTg0MDAwODYyODIzOTQ0ZS0wMSwzLjA3MjY0NzgwNTA1NTkxMDI4NmUtMDEsLTEuNjM4NDIzNjI1NzQxNzkyMTIyZSswMCwtMS43NzYzODg2MTYzNDY1NzU4NTVlKzAwLDIuMTU1NTMwNTM3ODg2ODQ4MDY0ZS0wMSw1LjY4MDA3MzU5MjI2NDIwMDk0M2UtMDEsOC4yNjExMDMyMTU2MjAxMDExMzdlLTAyLC04LjIxNTM0NTE3MDE5NTI3NTEwNGUtMDEsMS44OTIyMTAzODgyMTk0NzM2NTVlLTAyLC04LjIwMzQxNTMxNDU0ODQxNTEwNWUtMDIsLTkuNTcxNTgwOTgyNzU0MTAzMTg0ZS0wMSwxLjAxMzk3MjE1NDExMjE2MTM1MGUrMDAsLTEuNzMwMjc2MDYxNTUwMDg1ODQyZSswMCw1Ljg4NzQyNDA2ODA3NTA2NDQ2NWUtMDEsMy44NDMyMzQwNTIxMTI0NTMwNTllLTAxLDEuMDA5NzExODU0ODExNzE0MzI3ZSswMCwtMS4wMDUzMTE4NzIzNDg4NTg3NzBlKzAwLDEuMDE0MDcxNDY2NjgyMTEwMDQwZS0wMSwyLjE3MTE2NDk0OTMxODE2NTk0OWUrMDAsNi42MjA3NDI4ODk5OTcwNjMyODVlLTAxDQo0LjQwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsMS4wMDU4MTIwODcyODk2MzE4NjhlLTAxLDUuMzkxNjEyNzQxMTQxOTY1NjQ4ZS0wMSw4LjYxNzY4NDIzODAxMjAwMjIyOWUtMDIsMi4xOTA4OTgwMTMyMzk4NDAxMjVlKzAwLDkuODM2MzYxOTU3ODkxNzk0OTA1ZS0wMSwtOC41NjE0OTU0MjMwNDk3MDg2NzVlLTAyLDIuNTIzMzE0MzEzODQ1MjEyNDMxZS0wMSwtMy45MDc5Nzk5NjA4MTAxMzU2NTZlLTAxLDEuMjA5ODUwMTI2NDEwMzA0OTgyZSswMCwtMS40MDYxMDQ3NzEzOTEwMTA4NjZlKzAwLC0xLjYwNDczODUyOTg2MDk4NzA4NGUrMDAsMS40NTg3MTQ3NDk2NzU5OTM1NzJlKzAwLDIuMTUzMTE5NzkyNTcwNTgyNzI1ZSswMCw0LjY4MzA0OTA3Njg5NTkxNzA5NmUtMDEsMS4xMjczNzk0MTIzNTczNzI1NzNlLTAxLDYuNTcyNjc2OTAzMDQ3NzcyNzQ1ZS0wMSwtNi40NzA1MzUyNjM4Mjc1OTI1ODdlLTAxLDEuNzEyNDM1NDUxNTIyMTI0ODk2ZS0wMSwzLjg5MDg3MDU4NTYyMTUwMzExOWUtMDIsNi4yNjU2NDI1MDc0NTM2MDU5NThlLTAxLC0xLjU1Nzk5ODUyODE4MzM5NjM0N2UrMDAsLTUuMDcwMzQ3Njk3NjUzMzc0NTYzZS0wMSw4LjQ0OTk1NjAzMDAwODM3MjAzMmUtMDEsLTYuNzU1OTM4Mjc2MzAwNjMwMzc0ZS0wMSwtOS45MzM2MTM3NTQyMzEzNTQwNjVlLTAxLDIuMDQyMDcyMTQ5ODI2OTU0MDY0ZSswMCwzLjgxMTgwMDAxNzk0MDAzNjE3M2UtMDIsLTUuNzg5MTgxMzk5NDMyMDc4NDM0ZS0wMSwtMS42OTIzNzA0Mzc0NzQxMDg0MjRlKzAwLDcuMjkzNDYzNDYyODA0MjYxNjEwZS0wMSw2Ljk5MTM2MTUzNzE4NjkzNzUzNmUtMDEsLTIuOTg3NTk2MDA1Njk5MzU5NDU4ZS0wMSwtMS4xMDIyMzAxOTA5MDcwOTA2MjNlKzAwLC0yLjQ1NDk0MjM2NDIzNzkwMzYxNWUtMDIsLTguMzU4NTYwNjc0ODE2MjEzMzQzZS0wMSwtOS40MjA5MzU4ODg3MzExNTg5NDdlLTAxLC0xLjAzMjEyNzUxNDYxNzA3NTgwM2UtMDEsLTEuMDUxMzkwMzk4NjYwMDY0NTYyZSswMCwyLjQ2NjQ4OTU1MjUyNDQ2MTc4MWUtMDEsNi4wNzk5MjUwOTQwNjM5NzI2MzVlLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNjAwMDAwMDAwMDAwMDAwMDg5ZSswMCw1Ljk5OTk5OTk5OTk5OTk5OTc3OGUtMDEsLTguMzk2MzI0NDcxNzMxOTE0MDk2ZS0wMSwtMS4zNjgyNDUwOTUzMzgzOTA2NzFlKzAwLDEuNTYxMjc5NTk4OTU1ODA3MDM1ZSswMCwtOS40MDI3MDIzNTk1NzIwNDgyNTJlLTAxLC02LjU5OTQyNzA1MTAyMzM3NjU2N2UtMDEsMi4xMzAxNzE2NzQyOTg4NzM1NTJlLTAxLDUuOTkzNjkzNzI1MjIyOTcwNTAzZS0wMSwtMi41NjMxNjg5MzY4OTY0Mjc3NzRlLTAxLDQuNjA3OTQzMjc3MDEyNTU1NTcyZS0wMSwtNC4wMDk4NjE1Nzg5NjQwMTAxODdlLTAxLC05LjcxMTcwNjY0ODI0MzkwNzM5MmUtMDEsMS40MjYzMTY4NjA3ODcwMjczNTJlKzAwLDIuNDg4NDQxNjE0MzMxMTI4MDkzZSswMCwxLjY5NTk2OTUzMzAxNDE2OTMwNmUrMDAsMS40MTgwNjYzOTE1MzQ1NDQ1NTdlLTAxLDEuODMzNDM1MzYxODE1Njc4NDU1ZSswMCwzLjU1NzAzNTE1NzIzOTg0NDUzNmUtMDEsLTQuNzcyODYyNzA0MDMyMjkzNTEzZS0wMSw0LjY2Mzc5NTc0MzgxOTc4ODU2NGUtMDEsLTkuNDM5MjUwNjQxMTE4NDk2MjEwZS0wMiwtOS44MzExODE4Mzc0NTcwNzY5NjZlLTAxLC04Ljk4MzIxOTcxNDMyMDE1OTc1NGUtMDEsOC4wMjA1MTczODc0MDUxNTk0MDRlLTAxLC0xLjg0NjUzMTk4MTY2NDY3MzAyOGUrMDAsNi4wNDEzNjc0MDQ0MjY4NDE3MjVlLTAxLC0xLjYyOTU4MzYwMjc0ODQzODI3NmUrMDAsLTIuMTIxMTc2NDQ0OTAyNDM1OTU0ZSswMCwtMS44Mzg4NDY2MDM3NTg0OTg1MTBlKzAwLDEuOTY2NzYzOTcxOTM0NzM5ODQxZSswMCwtMS45NjIzMzk2NDk0MzU0MjAwNTNlLTAxLDguNjU4MzE4MDE2NTQxOTA5MDc5ZS0wMiwxLjQxOTI1NTA0NTkxMDk1MTE5NmUrMDAsOS4zNDE3OTc0ODQ5OTcyNDg0OTFlLTAxLC0xLjM5MTUwNTI2OTQwNDIxOTU5MWUrMDAsOC42OTAwNjM0MjgxODc2MTEwMTdlLTAxLDEuODQxODEyNjQ3MDM1NDYyODgwZS0wMSwtMy40MTY3ODA5NzU5NTg4MDU4MTBlLTAxLDIuNDI5MDkxNDEzNzc4MDM4ODA1ZS0wMiwxLjI3OTgxMjAyMDYyODAyMTkwN2UrMDAsLTguODU5NjY0ODIwNDA5NTI4NTE4ZS0wMQ0KNS4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDMuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwxLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsNC4wMDAwMDAwMDAwMDAwMDAyMjJlLTAxLDQuMDA4ODU2NzkxMDQxMjExNTA5ZS0wMSwtOS42NTcyMzY1MzI5MDgzNDU1MjJlLTAzLC0xLjc5NzE2NDYxNTM5NTYxODQ0OGUrMDAsLTguMDIyNTMxNzE3MzA4MTA3ODc5ZS0wMSwxLjkzMjEzNTUzMjMzNjk2NDYxMmUtMDEsMS4yOTczNDIwODkwOTI4OTA2MTZlKzAwLDEuMDAxMzMxMDE3MzQ2NzI5NTc5ZSswMCw1Ljk3MjEyNTA0NDAzNDI0OTkzMGUtMDEsLTguMTUyNzU2NjExMzY0NTg1NTE1ZS0wMSwxLjgwMTIxMzk5MDgwODUzNDk0OGUrMDAsMi4xNTI0MDQ2NzYzOTYxMTQ2NThlLTAxLC0xLjAwNjM2NTUyMTY3ODU1MDMxMmUrMDAsLTEuODI5MDQ5ODA4NTY5NTEwMDQ5ZS0wMSw4Ljk2MjQ4NDI1MzU2MTU5MzM5NWUtMDEsNy42MTc0OTgzMTgxNTgxMDY5NTZlLTAzLDguODY4NjQ2ODY1ODI3NjA5NjM4ZS0wMSwxLjEwMzY5Mzk1NzQ2MjE1MDI2NmUrMDAsNC4wMDUzMDY4NDU5ODcwNjE2NTllLTAxLC04LjU3NzAyNjIzMDQ2ODk0MDQxNWUtMDEsMS4zNTQ1NDY2MzE4OTk4MDUzNDJlLTAxLDQuNTE2NTg1NTkzODgzMTAwMzgwZS0wMiwxLjg1OTM0NjMzMzg1MTYyODI4NmUrMDAsLTEuNjI2MzIxOTM3ODI2ODMwMTAwZSswMCwtMS4zNDgyMjQ1MTA5NDM1NDA2MjJlLTAxLC01Ljg0MDkzNTQ2Nzk0OTE5MzE2MWUtMDEsMy4zNTEwNTYyMDE5NTk5ODg3NjdlLTAxLC0yLjQzNzU2NDM1OTE5OTM1NjEwMWUrMDAsMS4xMTQ5MjQ1NTk0OTAyNzk5MDllKzAwLDEuMzc0ODQ4NzMzNTUzMzY1NjYyZS0wMiwtMS44NDQ3MDExNjM2MjgwNDYxNDhlKzAwLC0zLjYxMTEzMTM0NzM5ODY2MTE1MWUtMDEsNi4wODk2MjM0MTY1NDUyNDIzMDdlLTAxLC0xLjU5MTQ0Nzg3NTQ1ODAzMTQ1OGUrMDAsMy4yMjIyMTY0NDMxNTU2OTkxNzJlLTAzLC0xLjA1NzQ3MzY0NzgwMTUzMDA4MWUrMDAsLTUuNTU5ODUwMzE4Nzg5NjczMDYzZS0wMSwyLjY3MzgzODI2NzQ2MzY5MzExNmUtMDIsMS44MzQ1MDI1MzU4MTU3NjI5NDdlLTAxLC00LjcwNzQyNDk4MTgyNzI3MjMxNGUtMDEsMi43Mjc5NjM4OTUzMDI2NDEzODRlLTAxDQo0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsOC4xNzk3NzYwNzI1NDgwNTcyNzVlLTAxLC0yLjc4OTE0Mjc1MTAzMjM5Nzk0OWUtMDEsMS40MzE1Njc3NTc0NDkyOTA4NzllKzAwLDEuNDYyMjE0MTcwNzgwNDE5NDg3ZSswMCwtNC4yODcwMjA2NTU4NTgyODg1MDllLTAxLC02LjM3ODQwNTU2NDczNTg0Mjg1OWUtMDEsLTEuNjY0MTcyOTg1MTY2MTczNTEzZSswMCwtMS4yNjU2OTMzMTYzOTM4OTg1MzhlLTAxLC0zLjYzNDM3NzgwMTE2MDUxMzc4OGUtMDEsNy43OTA1MTIyMDEzMjk5MTU1MDllLTAxLC0xLjUwOTY2MTYwNjA2ODI5ODgwMGUrMDAsLTIuNzczOTEzOTE3NDMxMDk4Mzg2ZS0wMSw5LjY4NzQ0MzkzMTExMTQ1MzUyMWUtMDEsLTcuMzAzNTcwOTU1NTc5NTk5MTIyZS0wMSwtNy42MjM2MTUzNjcyNzYwOTMxMjRlLTAxLC0xLjQ0Njk0MDMzNDc1NTgwODUyMmUrMDAsMi42MjA1NzM4NDYwMTgyMzkyODNlKzAwLC03LjQ3NDczMTc4MDY1Mzc5Mzg0NGUtMDEsLTEuMzAwMzQ2ODMyMjE4MzM5MTMzZSswMCwtOC4wMzg1MDQwNDAzMTUxOTk3MTdlLTAxLC03Ljc0Mjk1MDgwNDg2ODA0NTEwMGUtMDEsLTIuNjkzODk3Nzg0NTEyNDAyOTE1ZS0wMSw4LjI1MzcyMjMyMDg3NTE0NzU2N2UtMDEsLTIuOTgzMjMxNjg5OTU4MzM3MjA3ZS0wMSwtOS4yMjgyMzMxNDk5NjgyNzkwMzdlLTAxLC0xLjQ1MTMzODQ5ODE5MTAyNTExN2UrMDAsMi4xODU3MzU4MjE5ODcxMzcxNDVlLTAyLDQuMjUzOTA3NDAyOTc5MDcyMTYxZS0wMiwxLjUzMDkzMjM1MTAyODgyNDYzNGUrMDAsOS4yNDQ3NzM1NDY5ODA4NTg0MDNlLTAyLC05LjkwMDgzMTEyODQwNzczNzQzNmUtMDIsLTEuMDUwNjUzODM2NTg3NDg5NTY1ZSswMCwtMy4wNTk1MjU3NTA5ODM5MTkxMDFlLTAxLC00LjM4NDc0NDU4MDM0NjA2MDUxNmUtMDEsLTMuNzAxNjQxNjQ1MTM3MDI1NDI3ZS0wMSwtOS41OTI1NTM5MjY0MDU4ODIzMzZlLTAxLDUuMzgzMjk2MDMyNzYxNzY4NDkwZS0wMSwtMS40MjQ0NTQxNzUwOTM2OTM3MDllLTAxLC0yLjAwMzUzNDgwMDA0OTg3Mzk5OGUtMDEsLTEuNzE0MDQ2MTE2MDQ4OTk2MzcxZSswMA0KNS4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDMuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwxLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDQuOTM2NDQwODc1MjQ4NjM4ODM4ZS0wMSw0Ljg3MDE1MzI1OTgwMzc5NDQzMmUtMDEsLTguMzkxMjk0MDI4NDIyMTM3MTE5ZS0wMSw5LjkwMTIxMzgzODc5MTkzNjgzOWUtMDEsLTEuMzY0NzU4MjMwMDgyNDMyMzU1ZSswMCwtMi4xODY5OTA4Nzg5MDc5ODc0NzZlLTAyLC0yLjcxMjA3MzM5ODkwMTYzODc4OGUtMDEsLTEuMzE3MTc0Nzg4ODA1Nzk0MzA1ZSswMCwxLjg5NzAyNjEyMDc5OTk1NzUyN2UtMDEsMS43MDI1NzAxNTIyNDE3OTEzMTNlKzAwLDYuNzYzNDIzMDA2NjkxOTc2NDkxZS0wMiwtNC42MzAyMTc1NDEwOTA1MDk0MjVlLTAxLDQuNDcwMjQxNTY4ODU2NzgyNTg4ZS0wMSwxLjA1NzE5OTk1NDY3MTU0OTM2OWUtMDEsMi43NzYyMTMxNjI1NTAxNDg2MzNlLTAyLC00LjI1NTQyMjEyNzcxNDQ4MDQ3NGUtMDEsMS40MjE5NzU1NTkyOTI0NjQ3NzVlKzAwLDQuNTYzNjMzNjM0ODA3ODUzNzc4ZS0wMSwtNS4yODY3MDY1ODkzNTQ4ODU5MTBlLTAxLC0xLjA4MDAzODM2NzgwOTU3OTI5MmUtMDEsLTcuNDA4NjY3MDQyMDQwNzI2MzQ3ZS0wMSwtNi4wODI5MTE1MDA4MTQ5NTAzNTZlLTAxLC02LjQwNzI1NzI0MTkwMTk5MDE5N2UtMDEsLTEuMTM0MzExNTkzNzIyMjI3NDUxZSswMCw3Ljc3Mjc2OTYzNzY3OTU1NDA4OWUtMDEsLTIuOTEwNDE0NjMyNzMwMjU3Njg5ZS0wMSw1LjU0MTI3NTc4MzI2NzY5NzMxOWUtMDEsLTYuNzAxMjU4OTc3MjcyOTY0NzEyZS0wMSwtNi4wMzYyNDk0MzkyMzM4NjUwMzNlLTAyLC03LjExMDQwNTk2NzkxMTExMjAxM2UtMDEsNy4xOTY2ODE3MDUzNzMzMTY3NTFlLTAxLC0yLjQ4NDE5MzA2NzA1MDM4MjI4NmUtMDEsLTcuMzA4NzM1ODU5NTEzODU4NTEzZS0wMSwtMS42NDE3MDMyMjg4MDk3ODQxNDNlKzAwLDIuNzU2NjY1NDkzNDA3NzQzOTE3ZS0wMSwtNy4wODM4NTA1MjMzODEwNzExMjllLTAxLC0xLjU3NzkyMTcxMjA5OTUxNzM4NWUtMDIsLTQuOTE3MzAxMDgwMTM1Mjc2MjI2ZS0wMSw5LjU0MTg5NTgwODk4NzY0OTMzMGUtMDEsNS40NDE0NDc1MjM1ODAwNzk2NTllLTAxDQo0LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsNC40NzIxMjA4NzQ1NDgzMTQ4NjJlLTAxLC02LjE2MTIxMTIzMzIzNDc5MjM2MmUtMDEsNC42NjI5MDA0MzU1MDE4OTQ5MjVlLTAxLDEuNzE0ODMxNjA4Njc2MDQyODk2ZSswMCwtOC4zMjE4NjAzNDE1MDA2MTk4MThlLTAxLDEuNzIzMzkxMzkyMjkxODg3ODE0ZS0wMSwtMS42NDkyMTY5NzQ0MTcxMzIxMDllKzAwLDEuMzk4NTYyMDkyMTI1NTM1NTA1ZSswMCwtMy45NzkxMjA5ODU5MDg0MTQyMzJlLTAxLDcuODI1Nzg4ODA4NDE5Nzc0NjQ1ZS0wMSwtMS43MjMyMjgyNTA3MTYzMjMwMThlKzAwLDEuNzk3NTM5Mzg3MTI1OTA0NjY0ZSswMCwtMy41Njg3MTUyODAyNTU5ODQ2MTJlLTAxLDUuNDU2NTczMjM0NzAwMjc0ODg4ZS0wMSwxLjUwODE4MjA2MzMyNTkzNzk2MGUtMDEsLTIuNTU0NzA3ODYxODc3Njk0MTY0ZS0wMSwxLjY4NTc5MjMwMjY1OTMwMzU3NmUrMDAsLTEuNjQ4MDQ2MjA2MzY2MTc5ODIyZSswMCwyLjk4NzEzNjU5OTkyMDA4OTM5N2UtMDEsOS4xMDY0NTY3MjIyOTk3MDI4MjJlLTAxLC0yLjk4NTYxMjE2MzYzNjYyNjQ1OWUtMDIsLTEuMTgxNzA3ODQzNjY1OTE3OTk1ZS0wMSwtMS40MjY4NzcxMjA3MzQ2NTAzMzllLTAxLC0xLjIyNzYzNjQyMDQxMDQwNzk5MWUrMDAsMy44MTI3Mzg0MDk0OTM0NjUwNjllLTAyLDUuMTI3MTc1MjM0NzIzOTg3Mzk2ZS0wMSw2Ljg1OTkyMjc0ODA2NjA1MjQwMGUtMDIsLTIuNzIyNzYxMDExNDUwODA2MDY4ZS0wMSwtNC44OTcyNTAyMjM3MzAyNjczMDRlLTAxLC0yLjc5Mjk2NjY5Mjc4MzcyMTU2MWUtMDEsMS4yNTc3NDQyMTc0OTYwMzgyNjRlKzAwLC0yLjA4NjYzNDk3OTQyMDU0MjU0NmUrMDAsNC4wMDcxNDU2NTQ3Nzc1NDU1MjllLTAyLC0zLjI3NzU0OTE3Mjk2NDE2NzU5MGUtMDEsMS40NTU4MDc5NTE4MzY4NDM0MTdlKzAwLDUuNTQ5MjIyNTQ0MzgwMjc3MTUwZS0wMiwxLjQ4NDkyNTU5ODY5OTk1NDEwOGUrMDAsLTIuMTIzODkwMDE4MDQ1NTU5MTAzZSswMCw0LjU5NTg0OTA0ODM0MDU2MTczOGUtMDEsMi44MDA1Nzg2MDAzNzY4MDEyODZlLTAxDQo1LjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsMS4zOTA1MzM5NjcwNzM5MzgwNjBlKzAwLC0xLjY0MTM0ODYwODgyMzAyOTEzMmUrMDAsLTEuNTUwMzU4MDgxMTgzMjU3OTA4ZS0wMSw2LjYwNjAyNjE3ODY0OTI1ODg0MGUtMDIsLTQuOTU3OTU0OTQ1NDUyMDkzMjU0ZS0wMSwxLjIxNjU3NzcxMzc0Mjk0MDMyNWUrMDAsLTMuMzg2ODIxODU0NDUzOTc1NzY2ZS0wMSwyLjAzNDc2MjU0NDAyMTE1MzY0MWUrMDAsMS4wNTQxNzc5MDg5Mzg5MjI3MTRlKzAwLDkuNTA4MzM2OTcwMDM3OTk2MDUwZS0wMSw1LjU5Mjk4OTgxMzkwODg0Mjk3OGUtMDEsLTEuMDYzNjk1NTkxMDI1NTQ3ODkzZSswMCwtNC4zMTA5NjMzNzUxMDc1NzA5OTRlLTAxLDUuNzI3NTEzNjY4NTcyMTU4Mzc4ZS0wMSw2Ljc3NTU3MDMzNTg3NzE3MTI4MGUtMDEsMS4zMDcxODM4NDUwODEyNTc0MDFlKzAwLC00LjY3NDQxMDA5NjI1OTA2MzQ1MmUtMDEsLTguNjAxNTMzODQ5MjQ2NjMyMDAyZS0wMSw4LjU5MTA0MTkyNzg1NTMwNjI5M2UtMDEsLTguMDk2MjY1NzYwNDAxMTI2Nzc2ZS0wMSw4LjczMzExODM2MDcwNDEyMTg0MWUtMDEsMS4xOTk3MzYxNzY0MTUwMzc4MjVlKzAwLDQuNTYxNTMwMzU4MjcwNTUzNTMxZS0wMSwtMy41NzU3OTAzMTk2ODU5NzkxNTdlLTAxLDQuMTA4MjIyNjE0Mzg3OTU2NzQ1ZS0wMiw1LjkzNDY1OTE5NjAzMjM5MTMzN2UtMDEsMS4wMTg1NTE4NzEyMDczNDYzNzRlLTAyLDIuMTk4Mjk2MzM4NjcwNDkyNTY3ZSswMCwtOS45MDY3MDkzMDYyNzE0OTE3MTFlLTAxLC0xLjAwMjY2ODU4NzM2OTc5MDkyMGUrMDAsLTkuNzY4OTUzODY3MzUzMjUxNjYzZS0wMSwtNS44OTU3OTkyMjU0NTIxNTYyODllLTAxLC0yLjE3ODkzMTUyMDE5NDkwOTMyMWUrMDAsLTYuMjk2NTA0MjY5NDAxODEyNTE1ZS0wMSwtNi41MzI4NDcwMTkyNzg4OTAxMTFlLTAxLDcuODUxNDAyNTE3NDE3NjI4NTY4ZS0wMiw0LjE3ODAwNTgzMjA2MDgxNDMyOWUtMDEsLTEuMjQwMjE2MzM2NDA3NzcwMjkyZSswMCw5LjAwMDU0MjQyNzY0MDcyMzA5OGUtMDEsMS44MDIyNDIyMjk3OTA1NDcxNTdlKzAwDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy4yOTk5OTk5OTk5OTk5OTk4MjJlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTIuMDgyODUxMDMwOTQ5OTYzNDMzZS0wMSwxLjU3NDM3MTIzNzQ3NTU3MTYxN2UrMDAsMS45ODk4OTQ5NDQwNTE4NzczMzVlLTAxLDEuOTg4NzMxOTE4NTk1MzkxMTEzZSswMCwxLjExNzI4MzQ2NTY4ODE5MDI1OGUrMDAsLTEuNTYzOTA0NjM0ODM5NzY2MjcyZSswMCwxLjg2MjczNzA2NjEzNTU0NTcyNGUtMDIsMS4wNTQzMjQ5NzQ5MDQwNzc3MjdlKzAwLDMuMDU0NjU4MTA0MDYxNjg4ODA2ZS0wMiwtMy42ODgzNTMwODQ1MDY2OTQ0NjhlLTAyLDEuMjY5NzY0NzUwMzE0MzAzOTE0ZSswMCwtNy4wOTg1NDE4MjE0NjEwMzk2MjVlLTAxLDEuNzUxNTYxMzI3ODIxODMzNjU4ZS0wMiwzLjIzNjI1NzY0NjA5MTE4NjgyNGUtMDEsLTMuMzM3OTA5NjAzNTM1NjQxNDc4ZS0wMSwtMi4wMTI5MTAzODc3NTM3NDc1NjBlLTAyLDcuNzUwMjMyNjMyMjQxNzAyNTU3ZS0wMSw0LjMyODM3NjIxNDk5OTkzOTQwOWUtMDEsLTguMDg3MTc1MzE5Nzk1MzM2NjU5ZS0wMSwtMS4xMDQxMjM5ODU3OTkyNjE3NDJlKzAwLC03Ljg5MTAyMTgwMjU2NjUwMjQzMGUtMDEsMS4yNDg0NTU3ODg0ODY2MDUzMTJlLTAzLC0xLjU5OTM5Nzg3NzU3MDQyODE3M2UtMDEsLTguMzE5NTc0OTMyMTcxMjQ3NTUwZS0wMSwtNS45ODE1MDQ1MjUxNjQ4NTc5NzdlLTAxLC0xLjUyMDAzOTI4NTE5MjA2MzY2MWUrMDAsNC4xNzg1MzcwMzIxNzMyNTk1NThlLTAxLC00LjAwMTg3MjUzNTE2MzI5MjIyMmUtMDIsLTEuMjU5Nzg3MzQzNDA1MjcwMjEwZSswMCwyLjg2MjA1MDQxODc3ODI4MTg1NGUtMDIsMS4zNDI2MjIwMTA1MTAzNTMyMzdlKzAwLC03LjM5OTM1ODUyOTY1MjU5NjU1MGUtMDEsMS4zMTUxMzc2NjU3MjA5NzIzNDllKzAwLC0zLjIzNDU3NDcyNDgzNDIzODI0NmUtMDEsMS45NzgyODE2Nzg0OTg2NzgxNDJlLTAxLDkuNzc1MDgwMjQyMjE4NTI4NDQ4ZS0wMiwxLjQwMTUyMzQxNjAwNTI0NTQzN2UrMDAsMS41ODQzMzg0Njc4NTUzMTcxMjNlLTAxLC0xLjE0MTkwMTQxOTIwMzg0NjU3OWUrMDAsLTEuMzEwOTcwMzcwNDQxMjEyMzQwZSswMA0KNy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLC0xLjUzMjkyMTA1MzQzMDEyNzg1NmUrMDAsLTEuNzExOTcwMTY0MDk0MjIxMzE0ZSswMCw0LjYxMzUwNTg5NTU2ODQ5MjY2NWUtMDIsLTkuNTgzNzQ0ODAyMjY1NjE0NjQ4ZS0wMSwtOC4wODExNjEyOTQzNzQwOTY1MjZlLTAyLC03LjAzODU5MDM1OTkwNDQ2NjM1NGUtMDEsLTcuNzA3ODQzMDA3MDY1NjUyMjg1ZS0wMSwtNC44MDg0NTM0MDg3MjcyOTEyMTJlLTAxLDcuMDM1ODU1NTQ2NDMzODgzNDQ1ZS0wMSw5LjI5MTQ1MTQ3NzY4NjkxMDU5OGUtMDEsMy43MTE3MjU1MjY0OTAzOTIwMDJlLTAxLC05Ljg5ODIyNTQ5NTQ3MTE5MjM0OGUtMDEsNi40MzYzMTI3NTQ1MzMzODQyNTFlLTAxLDYuODg4OTY2NjY2MDc5MzIyNTA5ZS0wMSwyLjc0NjQ3MjAzNjEyNDQ0NTQ1OWUtMDEsLTYuMDM2MjA0MzYwMTkwOTA2NTU5ZS0wMSw3LjA4ODU5NTc1MzY3MTQwMjgyMmUtMDEsNC4yMjgxODU3NDY3NjY2MTQ1MTdlLTAxLC0zLjExNjg1NjU5MTU5OTEyNTk4MWUrMDAsNi40NDQ1MjAzMzQxMTA0MjI5MTBlLTAxLC0xLjkxMzc0MjY3MDg2MTUwNzA2N2UrMDAsNi42MzU2MTU3NjU5MTM4MTQ4NTZlLTAxLC0xLjU0MDcyMzk4NDI0ODM1MzA1MWUtMDEsMS4xOTM2MTE2ODA3NDkxOTgxMDFlKzAwLC05LjgxNjEyMTEyMDU5MzA1MzQ3M2UtMDIsLTguODY2MTQyNjAwNTYxMTI0MzU0ZS0wMSwtMS40NzM1MzY2NDU4Mjg0MzY1NzVlLTAxLDEuMDU5ODA2Mjk0OTMzNzc0NTQwZSswMCwyLjYyNDY2MTc4NjE1ODczODQ2M2UtMDIsLTEuMTQzMzUxNTk4NzIzNzY3ODc2ZS0wMSw3LjQzNTUzNTE1NTA4MzM2OTI2M2UtMDEsMi4xMDM1OTM2NjYyOTgxMjkxNjFlLTAxLC01LjkyNzQwNTgzMzIzMTgwNTc3NWUtMDMsMS4zNjYwNjAwNjg0MDMzMzE0OTZlKzAwLDEuNTU1MTE0MDMyMDU5MDY3NzMwZSswMCw2LjEzMzI2MjI2MzI4NzAxMTUxOGUtMDEsLTIuODU5NTkxNTE0ODUxNzI5MjQ0ZS0wMSwxLjQ5NjkxMDk5MzUyMDgyNzEyN2UrMDAsMS4xODMxMTk1NTczMzE3MDcwMzllKzAwLDcuMTg4OTcxNjU1MjgyOTE2MzczZS0wMQ0KNi40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLC0xLjIxNjA3NjU4MDc0NTg2MDg5MWUrMDAsMS40MDY3MTkwMzMwNzk2MDkyMTZlLTAxLC03LjQzNjcyMTc0NzAwODczMTAwOWUtMDEsLTEuNTkwMTIyNTE1NTQzNTkzMjk2ZS0wMSwyLjQwMDU2OTI5Mjk2NzE4NzA3NGUtMDEsMS4wMDE1OTQwODA5MDYyMzQ4NjNlLTAxLC00Ljc1MTc1MTA1ODI5MjQ4NDg5N2UtMDEsMS4yNzI5NTM3NDg5MTk5MTA3NTVlKzAwLC0xLjY5NjEzMTI2NjgzMTU0MzEzOGUrMDAsNy4zMDE4MzUzMTEyOTYxNDQyNzFlLTAxLC0xLjg1NzQ4MzI3MTU5NDUzNzk2NmUrMDAsMy44MjU5ODEzNjcyMzQ2Mjg3ODNlLTAxLC04Ljg2OTA0MzI2MjgzODc1NjEwM2UtMDEsOC43ODMwMzc1NzczMjUzMDQ0MzVlLTAxLDguNjQ1MjUyNDAwNzU5MzQ1NjQ2ZS0wMiwyLjQ3NzA2Mzc4NDY2ODI0MzA2M2UtMDEsLTEuMDE4Mjc5MzI1NTY2ODUxNDEyZSswMCwtNi41NDU3MDEzNDk5NzU4Mzg3NDVlLTAxLDIuMDcyMTczOTM0MTA5NTMzNTQ0ZS0wMSw1LjgzNTY5OTI2OTA5MzAzOTgyMGUtMDEsMi45MjkwOTYyNDE3NjM4NjEyOTdlKzAwLDIuMjI4NTgzMjMxMDM0ODY3MTYzZS0wMSw5Ljc2MDM3NTI1MzY4OTI1NzQwMmUtMDEsLTEuNTU2OTMzOTMyNTA5MjYwNTk5ZSswMCwtMS4zMjk4OTE4NjEzMzQwNjI4OTdlKzAwLC0zLjU1NDk0Nzc0NjA4NDUyMDI0NGUtMDEsLTEuMTk3NDI3Njk1NjM4NTY2MzI1ZSswMCwxLjQ4NjM5OTI1MzQ2NjM4NDU3M2UrMDAsLTQuMTAyMTg2OTI3ODAzMjg3NDIwZS0wMSwxLjM4MjE4MTg4ODM5MzEzODQ5MWUrMDAsMS40ODY3ODI0NzQwODU2MzA4MDFlKzAwLDQuMjc3OTcxOTg4MzU2Njg5NDAzZS0wMiw1LjAxNzk5NzUzODA3NjM4OTcwN2UtMDEsLTUuNjA5OTQ3MzM0MDkwMjkwMDA1ZS0wMiw1LjM4NDM3MDAwMzU0NTM4Njc1MWUtMDEsNC44MzM0MTg1MTc4MDU3MTc2MjllLTAxLC0xLjIzNjQ5NjI1ODkyMDMwNzEyM2UtMDEsNS4wNDk2OTk4MTQ2Mjg0MDMzMzhlLTAxLDEuNzIzNjk2Mjc1NjY3MjYxODAxZSswMCw3LjEzMDE2MjI5NzEwOTM3Njk5MGUtMDENCjYuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsNC45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwzLjI1Nzk5NjEzNjQwNjI1NTQwNWUtMDEsMS4yNDc2OTUyMTA0MzIxMjQxNDFlLTAxLC0xLjAxMjY3MzEyMzc2ODU5MTA4OGUrMDAsLTEuMDI3Mjk2ODc3MDc1NDYyNDY3ZSswMCwzLjIzMzU2NTMxNDgwMjU4NjEzM2UtMDEsLTEuMzY5MzkxMTI0MDQ3MTU3MjM4ZSswMCwtNy42NjMyNzU5ODk2MzU4MzE1NjRlLTAxLDEuMjgxNTExMzQwMzY0MTMzMTY3ZSswMCwxLjkxNDIyOTY5NzA2MjgxNDA5NWUrMDAsLTEuNjY1OTU2MDc2Nzk3NzE4Mzk5ZSswMCwxLjYyNjY0OTU2MjMwMTU4MTk3NWUrMDAsLTIuMTE0MzgyOTA4NDU1NTY2MjU3ZS0wMSwtMS41MDA1MDg3MDMxMzY0ODA1MTRlLTAyLC0xLjEzNDExNjMwNjQyNzMzOTYyN2UtMDEsMS4wODA1NDQxMjcwMjU0ODcxODllKzAwLC0xLjYwNzY3NjU3OTA0MzE3NzA2OGUrMDAsNC41NjE2MzYxMTM1NTEzMzM5MTVlLTAxLC05LjQ0ODcwMTk3Mzg4MDEwOTIzOWUtMDEsNS43MDc4ODUyOTM4MTU3Mzc2MTVlLTAxLDEuNTQyNzk2MzM4MjkzMDUxODUwZSswMCwtNC4xNzMyNjQxMjYyMDE2Njc0ODZlLTA0LDMuNzQxNTUwODU5NzA4MDI1NDc4ZS0wMSw0LjA5NTUxNzc4MjM3NjkxMzQ0MGUtMDEsLTcuOTk1OTM0OTk2NzA0OTAwOTMyZS0wMSwxLjUxMTYzOTM0OTg4NDMxODM2MmUrMDAsMS43MDY0NjgyNDcyNjA5ODg4OTFlKzAwLDcuMDE3ODMzNzIxMTcwMjkwMTQwZS0wMSw3LjMyODU0MzIwMDc2NDU0NjUxN2UtMDIsLTQuNjE4OTM4MTUzNTQyODQ2NDI1ZS0wMSwtNi4yNjQ5MDIyMzE0OTA4NzUzMjhlLTAxLDEuNzEwODM2NTgyNTQ2NjU1NjA0ZSswMCwxLjQxNDQxNTA0MjcyOTAyMzYzMGUrMDAsLTYuMzY2MTQ4ODc4OTU0OTQyODAyZS0wMiwtMS41Nzk5MzA1Mjk2NzExMjM2ODVlKzAwLC0yLjgzMjAxMTg2OTkwODk4NzEyM2UrMDAsLTEuMDgzNDI2NjYwMjY0Mjc5Njk1ZSswMCwtMS4zMDYyMDM5NTk5NTExOTQwMzhlLTAxLDEuNDAwNjg5MDM0NDQzMDAxNDEzZSswMCwtNi41MTY1NjIwOTA1Nzc4MDc2NjRlLTAxLDUuMDQ4MTU0NTYzNDA1MDE3MzM3ZS0wMQ0KNS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMjk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDEuMzAzMTgwOTYxNjQ4NDMyNDQ1ZSswMCwxLjI4NTM2MzE2ODU2MDQ4MTYwNmUtMDEsLTEuNDI0NDc4Njg3ODg4NDEzMzA5ZS0wMSwtMS4zMDg3NjM1MTQyMzg2MDgwMzllKzAwLC0xLjIwMjQ3NTMwODIwNDQzMjgyNWUrMDAsNC4xNjA5OTYzNDQxNTgyMzMxNjJlLTAxLC0yLjAwOTA3NTMzMjAwOTI2NzE5MGUtMDEsMS4yMjUzMTMxNzY1MzMwMTUzODZlLTAxLC00LjcyNzc3MTU2OTYyNDcxNDEyMWUtMDIsNi42NDE0NDA0OTM1ODY1MDQ1NjhlLTAxLC03Ljg0Njg3NDExNDI5NDQ1MjAyOWUtMDEsLTMuMzU1ODA2NDM1ODMxNjY5MTU0ZS0wMSwxLjg5NjE4MjIyODYzMzE0NDAwN2UrMDAsLTcuOTk3ODYxMzgzODU3NzA3Mjg1ZS0wMSwtMi44MTU3NTQzMDgwMDEwMjExMTFlLTAxLC01Ljg5Mzg2NzAxOTc4NTY5MzQ5NWUtMDEsNC40NDc4MTM2MjQwNzI1MDE5MTVlLTAxLDEuMDIyMzkyMzIyNDQyMDY5NDU3ZSswMCwtNC45ODIxMTYxODU4NjEwOTYyODBlLTAxLC00LjMxNDE0MzQxMTA0Njg1MjM5NGUtMDEsLTIuNzg5ODE2MDUzMDMwMzAyODg5ZS0wMSw1LjI5ODMzNzgzNDc0OTU3Njg2OWUtMDEsLTcuMzkzOTUzMDI1MTAxOTUzNjI0ZS0wMSwtMy43NTk1OTk2NTk3MTI1OTEzNTdlLTAxLC0yLjM3MjE5Mzg3MTUxMzAxNTMwNmUrMDAsLTEuMzgxNzQ1MDA5NDk0OTg1MjQzZSswMCwtMS4xMjQ0Mzc1NjAxOTI4ODIxNTdlLTAxLDguOTc4NjQxNzMyMDMxMjEzOTYyZS0wMSwyLjk1MDc1NzgzMzAxODYyNDA0M2UtMDEsLTEuMDk4NzY4NDU2NjY3Mjk5NDk4ZSswMCwtMS40MDAyNTYyMDgxMjc5NDE5MzdlKzAwLDEuNzQ2ODAwOTI4OTgxNjg3NDI5ZS0wMSwtMS42NTI4MDM2NDIyNTI4NDM1OTdlKzAwLDEuMDY1OTI2ODE4NzE2ODg4ODgwZSswMCw2LjM4OTYxOTE2NTAxNzgyNjM0MWUtMDIsLTEuNjA3MzIwMTU5MjM0MDU4MDIxZSswMCwtOS42NTk1Mzg1ODg0MTg2OTY4MzZlLTAxLC03LjI0MzExMzE5MjMxMTIyNzk2NmUtMDEsLTcuNzMxOTI1MTAyMjM0Mzg3MTE1ZS0wMSwtMS40ODk5MzMwMDgyMjE0OTIzMjhlKzAwDQo2LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMi43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDQuNTk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsLTguNzQ2NjI1MjE5ODg4NDUxOTg1ZS0wMSwtNi44NDQwMTU1NjE0MDQyNjE5MjdlLTAxLC03LjExMjg1NzU1NjEwNDM4Mjc1MGUtMDEsMS4xMjc5NTY2MjQ5MzMzODA1NThlKzAwLDEuMDQ4Mjc4MDI4MjcyMTQ1NzIzZS0wMSwtOS45MzI1NzIxNzQzNzU1MjM1MzNlLTAxLC0zLjM0NjIxNjA1OTU0MTIyMDQ3OGUtMDEsLTguNzk1NTcwOTczMTEzODQyMDYyZS0wMSwtMy4wMDAwNjY1OTAxMTc1Njk5MzFlLTAxLDguNzU1MDkxNTMxNDEzODMyMjI5ZS0wMSwyLjUyMjcwNzgwNjEyMTI1Mzc4MmUtMDEsMi4yODU2MDExODE1MjgwNjY1NzJlKzAwLDMuNzU5Mjc0MjU3Njc0ODAxNzIyZS0wMSwtOS4xMzU5NDUwOTk3NzEwNzAwNTVlLTAxLDguMDk3NDA3MzA4MTQ0NDc0MTgxZS0wMSwxLjA3OTkzMTIxNzE0MjUzNTcwNGUrMDAsMS4wOTQxNjY5OTE0NDM5NDM4MDRlKzAwLC0xLjA5NDI0MDk1MzAzNTA5MTM5MGUrMDAsLTEuNDc2Mzc0MTQ1MTQ4Mzc1MDA2ZS0wMSwxLjEzMTgxMTk1NjgyODQ1MjU5MmUrMDAsLTEuNjg0NzI4OTU4ODczOTQxMTQwZSswMCwtNC45OTQxNjc2MTAyMjAzODMwMjVlLTAxLC0xLjQyNjkzNzY4NTQyNjk5MTUwOWUrMDAsLTkuMzI1NzAyMjk4OTcwMTMyMTQyZS0wMSwtMS4wMTI0NTcxNTI3NDM4MDYyMTBlKzAwLDEuMjUwNTY5ODMyNTQzNDM0OTAxZSswMCwtMi4zNDUzODAzNDkwODc1MDM4NjhlLTAxLC04LjYzMzU1NTgxMzQxNzgyNTg1M2UtMDEsLTEuMDM1NjA1NzMxMzg0NDk0NjMyZSswMCwxLjQxNjY3MTY0ODcxNTMwMzA0NWUtMDEsLTEuMTEzNTYyNzM0MDY2NzEwNzc0ZS0wMiwxLjM0NDA3NDM3NDY3MzQyNjk0MWUrMDAsNS4wMDAxNjY5NTg1NzMwMjU3MzNlLTAxLC0xLjQzMTc5Nzc3ODA2NTAzNzQ5NmUrMDAsLTYuMjg5ODA3MDc1OTEyNjgzMzk4ZS0wMSwxLjA3MDA3MjUxMjA3MDk3NzA4OWUrMDAsLTYuMjEwODI2OTc3MDEzNzczNjIwZS0wMSwxLjczNDU3MjE3NDkyMzcwOTA3NmUrMDAsLTEuMDk4Mjg5NDMxMzI0NzQ2NjU3ZSswMCw1LjcyNjEzMzUzMDQwNzkwMTk2MWUtMDENCjUuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwyLjc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsNC41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwtOC42MTIxNTU1MzM5ODY0MTUzMTJlLTAxLC01LjA5NTk1MTMyOTQ2MzU3Mzg3NmUtMDEsMS4wOTg1ODE2NDgyMzExNDY1NjhlKzAwLC0xLjI3MDY3MTYyODM4NTE2OTMzOGUtMDEsOC4xMzQ1MjI0NTExNDEwNzA3NTRlLTAxLDQuNzMyOTA1OTQ5MTQ3OTk0NjczZS0wMSw3LjUzODY1NjgzNTYyMzAwNzcwMWUtMDEsLTguODgxODgyMTEwODU1MTMyNjg0ZS0wMSwtMi4yMTU3NDM5ODIwNDAwMDY4MzJlLTAxLDQuMjQyNTI2MTgxMDA4NzAyMjY4ZS0wMSwtOC40OTA3Mjg3MjY5MzY2MDM4NTRlLTAxLDEuNjI5NTAwMDQzMjMyMzI4NTU0ZSswMCwtNy43NzIyODA0MjE1NTEzNDQxMzJlLTAxLC0zLjAwMDAzNTc2OTM3Nzk1MjI0NGUtMDEsLTEuMDA2NTU5MDY0Nzk0MjM3NTEyZSswMCwtMi4xNDMzMDgwNjUyMzg2ODg0NDJlKzAwLDEuNzk2OTE4NTIyNTc0OTI4MDEyZSswMCwtMi4wNDMzODkzNjkwMzA0NzI0NjllLTAxLC00LjQ3OTE0ODM4NDE1NTQwMjUwN2UtMDEsLTEuOTg3MTUwNjE2NzA3OTg2NjUwZS0wMSwxLjQxOTg2Mzk3MjE5NjQzNTY3NWUrMDAsLTkuNjUxMDY2MDgwNjQ0MTcyODE4ZS0wMSw2Ljc5NTY3ODY1NzY1MDgyNDM1MGUtMDEsLTQuMjM3ODgyNDg1NDk0NzYzMzE4ZS0wMSwtNS45NjY3MDg1NTUzODMwOTc4NTZlLTAxLDUuNjcwNTgyMTI1MjAxODI0MDMxZS0wMSw5Ljg4MjQwNTczNzQyNjk2OTE1MGUtMDEsLTUuMTM5MDI5NTAyNzk5MTU1MDQ3ZS0wMSwtNy42ODg0OTE1OTY3NDgwOTkzNDRlLTAxLC0xLjE2OTA5NTc0NzMyMjAyNzE0NmUrMDAsMS4xMDM1MDM3NjY3MjgzNzU1NzllKzAwLC01Ljc1MjU1OTk0ODA2MTE3OTk4NGUtMDEsLTEuODQ5MTMwNzI3Mjc1NDUxMTM2ZSswMCwxLjQwOTk1MjEzODM5NjE0NjE5M2UrMDAsLTEuMzY5ODU5NTAxOTUyOTQyMjYwZSswMCw3Ljc5NDYwNTMxMjU5MDYxNDUxMGUtMDEsMS44MzQyODY0NjY2NzUyNDczMDdlLTAxLDIuODc5MTU0MzIyMTUyNzgzNzc0ZS0wMSwtNS44NDM3NTI3NTMxMTMyMTk0MDBlLTAxLDMuNjU1OTE0NjAyMjQ2MzYwNjY3ZS0wMQ0KNi4yOTk5OTk5OTk5OTk5OTk4MjJlKzAwLDMuMjk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS42MDAwMDAwMDAwMDAwMDAwODllKzAwLC0xLjY2Nzc3OTg5Mjg4NDIzNzMzNmUrMDAsNS44ODAzNzc0ODczOTgxMjg0ODllLTAxLDEuNTU3MDEwMDQxNTMyMTYwMTYxZSswMCw4Ljg0MDI3MTk3NDI2MzI2MTgzNGUtMDEsLTIuMDE5NTQwMDg1Mzg2NzIxMzYyZSswMCwtOS44NDIwOTAwMjI3Mjg0ODI0MzVlLTAxLC0xLjg3Nzk0OTIxOTc0ODA2OTA1NGUtMDEsNC44NjkzNzMwNDkzOTkzMjY0NzBlLTAxLC0xLjA2NjUyNjczNjYwMjI1MTAwMmUtMDEsLTQuOTMyMTQzODcxMTA0OTc4MDk1ZS0wMSw1Ljk1MzAwMzA3NjkyMjkyODA3MmUtMDEsMS4xNjQxNTE3NjYyMjQ5NjYzMDBlKzAwLC0yLjMyMjk0MDA3MTg2NTk3MzQ1NWUtMDEsNy4yODkyOTg2NzM4NTIzOTM0OTVlLTAxLC0yLjU3OTA1MDc0NTE4OTQ3NDYzNmUrMDAsLTkuMzc1MDkzODYxMDg3MjkyNDc5ZS0wMSwtMy4yMTI1ODkzNzA1ODAwOTUwODNlLTAxLC00Ljg4NTY2MjIwNzU0NjI1NzQ2M2UtMDEsMy4zMjc5ODIxNzQwNDQ1NDc1NDhlLTAxLDEuMDEzNzUwNTQ3NDk4MjYwNjU3ZSswMCw1LjA2NjY5MDI2MDI4Mzg4NDgwNmUtMDEsLTYuMjIyMjU0NzE3NTUwNTU4MjU2ZS0wMSwtMS41MjI3NjgwOTA1MDQxODYwNDVlKzAwLDUuNTY5NjQxMjA1Nzg4ODcwMDA5ZS0wMSwtMS44MzgxNzY3Mzk2NzAwMTIxNjFlKzAwLDYuNTMwMzcyODM0MDY0Mjg1MjU5ZS0wMSwtMS44ODQ0OTA4MjEzMDA2ODI1MTdlLTAxLC0xLjE3NTgzNDk4NzkzODIyODgyNmUrMDAsMi44NzI1NzMxMjQ2Njc5Mjc1ODBlLTAxLC0yLjg3NjEwMjY1OTAwMDk5MDY2OGUtMDMsLTMuNjU5NzI5MjkxNjI0NjkwMTI4ZS0wMiwtOC40MjIzMjk2NTI3Mzk0MDM0MjdlLTAyLDQuMTk1MjQxMDg0MjYxNDE1MTc2ZS0wMSw5LjI0NDM0MDIxOTU4NTA5NDMzMWUtMDEsNC45NjYxNTE5ODQ4Mzg1MTU0OThlLTAxLDEuMDEyMTMzMTg5ODIyMzA5NTk4ZSswMCwtNC40MTM5NzE4ODQ3ODA2MjQzMjdlLTAyLDEuNjE4NDU5MzI0MjMxOTc0NDcyZSswMCw1LjcxMTA5ODIyMTI5ODIyNjQxOGUtMDEsLTUuNDM2OTQwMjk2ODI3NzY4MDI3ZS0wMQ0KNC45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDIuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwzLjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLC0xLjA5Mzg5NTA1NjczNDQwNTAxNGUrMDAsMi4wNTc5NjgwMzczNDA3OTk2MzllLTAxLC0xLjMwNjUyMTUyMjkyMjYwMDgyMGUrMDAsLTkuNzMzNzU5Njc1NTY3NDg0ODkzZS0wMSwyLjM5MDg3MDgwMzczNTk5MjQyM2UtMDEsLTYuMDc4ODc0NDYyODE5NTQxMjQ3ZS0wMSwtOS4zMzMxNjI0MDIyNjkyMjI3NzllLTAxLC0zLjQ0NzUwNDYwODgzOTgyNTYyNGUtMDIsNy4yNjc3ODk5MTAzNzg5ODgzNjFlLTAyLC0yLjA1ODM0MDI1MjE4NzM3NjE1MWUtMDEsLTMuNzc1NDY5MTkwNTkyODg1NTQ5ZS0wMSw4LjU0NjQyNzI4NzEyNDQ4NjE4M2UtMDEsMy40MjQyNzM1MTI4NjgyNzYwODFlLTAxLC0yLjIzNDI2MTEyMTk0Njk2MDE5NGUtMDEsMi40NjQzMjE5MzM1MTUzNjU0MzdlKzAwLDEuOTM4MzE3MzY5Mjg0MTMwNzMxZS0wMSwxLjEzMjAwNTEzMzY3NzMyOTgwMGUrMDAsLTUuNjA5ODEwMDMxMzE3NTY0NzI3ZS0wMSwtMS4zNjI5NDA5NDcyMDgwMDk2MjNlKzAwLC03LjkxNzU2NTE1NjQzNDY0Mzg2OWUtMDEsLTIuNjgwMDk3ODMzOTgxMTE5MzM3ZS0wMSwtNC45NjYwODIwOTcyOTUxNzAyNTBlLTAxLDEuMzM2Mzg2MTgyMzIyNzkzNjAzZSswMCwtMS4yMDA0MTEyMjA5NjEwODAyNDRlLTAxLDQuNjE0Njg4Nzc0NDExMzk5MDE5ZS0wMSwtNC42NDgxMTU2MDMyODkwMzE4MTFlLTAyLC00LjMzNTU0MzMyNzMzMTY3NTY4OWUtMDEsMy43OTk2MDEzNDUzNTE0OTk4NDhlLTAyLDEuNzE0MDUxNDY5NzcwNzMxODYxZSswMCwtNy42Nzk0ODU5MTczNjgxNTA2NzFlLTAxLDcuNjY5OTA0NTA1NTk1NTExNzM0ZS0wMSwtMS4wMjYwMDcyNTE2MjU3ODE4ODBlKzAwLC00LjU5NjI2NDQyMjY5NDM4OTM5NWUtMDEsMy41ODMyMDU5NTQ1ODM2NDY4MzRlLTAzLDMuMjYzNzUwODk3MjY5OTA2OTcwZS0wMSwxLjQ4MzEyODYyNzk3MzgxNDA2MmUrMDAsLTUuMDA4MjY0MTQ2NDUzNTQxNDI3ZS0wMiwtOC40MzYxNTYwNjUzNTkyNjQ4NzdlLTAxLDYuNTAwNDE5NzMwNTA3Njk3MTY5ZS0wMSwtMy42NDE2OTgwODkxNTc1NTk1NDhlLTAxDQo2LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMi44OTk5OTk5OTk5OTk5OTk5MTFlKzAwLDQuNTk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwxLjMwMDAwMDAwMDAwMDAwMDA0NGUrMDAsMi4zODY4MTU3MDkzMTgzNTM2ODRlLTAxLC0xLjE2MjIyNDM5NTM3NzUxODUzOGUtMDEsLTEuOTQzNDU2ODUxMjg2ODIyNjYyZSswMCw1LjA4Mjk5MTg1NTkzOTczMTM1MmUtMDEsNS44MzM2ODAwNjgyMTI5ODc0NTdlLTAxLDkuMjY2MDQ3NjgzMDg2MDUzODY2ZS0wMSwxLjgwMDQ2Mjc2MjQ2MDIyNzYyOGUrMDAsLTEuMTk1MTAzNzczNDYzNDc1NzM4ZSswMCw1LjE2NTA3NDQ0MjgxNzU5NDMxM2UtMDEsNC4wOTI5NDk5NjY0MDk1NTM2NjRlLTAxLC00LjE5MDgxOTkyODA3ODIyMTAxM2UtMDEsMy45NzEwNjIzNjQ0OTc3ODc3MTFlLTAxLDQuOTk2NDY5NTUxMTE5NjU5OTU4ZS0wMSwtMS4yMTg2ODM4Mjk5NzcxOTY5MzFlKzAwLDIuNDYyMjI3NjEyNzY0MzIxOTQ5ZS0wMSwtOS4xNzk4NDMwNjAwNDYxNTU1NzhlLTAxLC02LjUxODU2NDk5OTMwNTkwNDcxN2UtMDEsLTEuNzc0NzQ0ODE1MTg4NjUwMDE2ZSswMCwtNC43MzM2MDkyNTUwMjQ3ODc2ODhlLTAxLC0yLjAzNTcwNjcxNDczNDc2OTYwN2UtMDEsNS40OTg1Njg2NzI5NjM5MDgyNzdlLTAxLDguOTk5MjY2NzExMDcxNTQ2NjAyZS0wNCwtMS41NDIyODgxNTA3OTk2Nzg2MjVlKzAwLDguNjIxNDgwNTY4ODQyNjczMjIwZS0wMSwtMS4xODU4NjYyMzU1MDA5MjMwNzJlLTAxLDQuODgzNzA1OTA0Mjk2NTc0MTQxZS0wMSw5LjY1OTM2MTE4NDU5NzAxMTc2MmUtMDEsMS40MjI2MDQ3NDg5NjkwMzQ3NzFlKzAwLDEuOTYxMjI2OTg5MzY1MDE1MzgzZSswMCwtNy4yMjM4NzU4NjcxNjY3OTU3NTBlLTAyLDMuMTExMjQ0NDYwOTM2NTM1MjgzZS0wMSwtMS4wNzgzNjEwOTA4MTY3Nzk3NzdlKzAwLDEuMDYxNjAwMTcwMDM1MjYxMDgxZSswMCwtMS4xODQ4ODc0NDQ1NzE3Njk2NDRlKzAwLC0xLjgwNTI1MTY4ODYzMDQyMTA3MGUrMDAsOC4zMDM4NjAwNTM0MDM5MTc1MjllLTAxLC01LjIxNjk2NTI0OTQ3ODE1Mzc2NWUtMDEsNy43NzYwNzI4MTM0MjI0MDQ0MTdlLTAxLDQuMDgwNzQ2NDkzNDYxNjg3MTYzZS0wMSwtMS42MzAwMDI2NTEwMjM3MDg2NzFlKzAwDQo1LjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMi43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDMuODk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsLTIuNzE5Njc5MzY0MzIyNjE0NDc5ZSswMCwtMS4wOTY2MDE3NDcwOTI3MTkxODFlKzAwLDEuNjQ5MTQ4Njk4MDg2NDUzODU0ZS0wMiwtMS4yMjE3NzYzMzQ2OTQ3NzE4NzFlKzAwLC02LjUyNzYxNDQ5MzQ4NzEyOTQxMGUtMDEsLTEuNDU4OTQwNzMwNTk3MzI1NDMwZSswMCwxLjY5ODc3OTU5Nzk2OTI0NDM4MmUtMDEsOS4wODI1OTI3MDM2MzI1MjA3NDhlLTAyLC00LjgxMzkyNjI0MDQ3NjMzMjc3NGUtMDEsMS4zOTcwNjUzMDEzMTM3NDI2MjVlKzAwLDEuNDk3NzE1MDI3MzE5NTYzNDA4ZSswMCw1LjY1MjY3MjAyNTM2NDUxMDE4OWUtMDEsLTEuNzk5NzcxMTgxNDY2NzQ0NTMwZSswMCwtMS4xMDQ2OTAxNDcyMDU2MDk0MzBlKzAwLDQuMDcxMzAzMzEwODMyNDgxNDI2ZS0wMSwtNi4yODU1NzU4MDI0NDU4OTc0MjBlLTAxLC00Ljg3MDkxNDMxNzExODIzNTA4MmUtMDEsOC45ODk2NzM5NDU4ODA1OTk2NDhlLTAxLDUuMTA4NzQ4MjE4OTI0MTc1MDc3ZS0wMSwxLjMxNDE1NDQzMzgxMzk0ODgwOGUrMDAsLTQuMjkyMDkyOTY2NDY0NzczMzQwZS0wMSwxLjM3NTIyNTQyMDQ0Njg5NzIxOGUrMDAsLTUuNTQxMzEyNDcwODQ0ODU2ODk3ZS0wMSwxLjQ5OTQ5MTQ5MDEzODc2MzAzOWUrMDAsMS4wNTgzNDY0MzYxNjc3ODY3NThlLTAxLC04LjYwNTA5NzQ3MTA5NjA4MDM2NGUtMDEsLTEuNjMxMjE5NTA3NjUzNTMyOTYzZSswMCwtMy4wMTQ3MjMxNDg2MTY5MzE4MDNlLTAxLC0yLjU2MjMyNjk3OTk1NDM4OTA3MmUtMDEsOC41NzY2MTkxMDEyMjQ1MjA3NThlLTAxLC0xLjEwNTkwNTAyODA4MjA3Mjg2MWUtMDEsLTQuMzI0MzE5Nzg1Nzg0NDQ2NzU3ZS0wMSwxLjA3NzAzNzQ3Mjk0NzUzNjQ4OWUrMDAsLTIuMjQ4MjY1NjEyNzAxNTE0NjQ5ZS0wMSwtNS43NjI0MTgxNjIyNjkwMzE4MDdlLTAxLDUuNzQ2MDg5MTcyOTI1NzI3OTYxZS0wMSwtNC44OTgyODIxODg0NzI2Njg0OTdlLTAxLDYuNTg4MDIxNDE2OTE1MTI5NjU4ZS0wMSwtNS45NjkxNzExMTc4MzE5NDM5ODVlLTAxLC0yLjIyOTU5MTgyOTcwMzc5NDIxNWUtMDENCjUuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjUyMTc2OTc1NTg4MjY2MzQ0NGUtMDEsLTMuNzQxMjYzMjAyNjQzMDU4NjcyZS0wMSwtMS4zNDUxNDY5MzU3Mzg5Njc5MjRlLTAyLDguMTU0NzE5NjkyNDAwNjAwNDYxZS0wMSw0LjEwNjAxNzkxMzIwMDQ3NjQ4OGUtMDEsNC44MDk2OTg1MDAzNDYyMzUwMjhlLTAxLC02LjM1NDMwNDM4NjE5MjY3MTc5NGUtMDEsOC41MjgyOTc2ODI3NDM2Nzk2MDllLTAxLDYuNjk1NjIzNDA1MDkwODI1ODc1ZS0wMSwxLjAwNDQxOTE5MjI2MTYyNDc5NGUrMDAsLTcuMjYzNjU4MzIxODYxMDIxNzgzZS0wMSwtMS43MjQ1ODU5NjY4MTQ1NzA0OTJlLTAxLDYuMzM1MzM5MDI0NjA0MDA0MjIxZS0wMSwtNi4wODgxNTExNzQxNzEzMTM0NjJlLTAxLC0yLjI2MTIyNDY5NzYzOTU2MjI0MmUtMDEsMS45MjU4MDU3Mzc0NTk1MjY5ODllKzAwLDEuOTUxNzYxMDEyMjY3ODEzNzMzZSswMCwxLjIzOTk0MDU0OTgyNzM2MDEyOGUrMDAsOS4zODU4NTEzNjI0OTc2ODI0ODJlLTAxLC0xLjAxOTI1MTE0OTUwNTEyOTUxN2UrMDAsNS4xMjU2MjIzMTQyNjEyMjMzODllLTAxLC0zLjU5MTE2NTk1MDY1ODg1MjI0NmUtMDEsLTEuMDU4NTcxODk3NjA1MzY3NzQwZSswMCwtNS4wOTAwNTgzODU5MTMxOTk4MTJlLTAxLDEuMTU2NjUwNzQwNDYzNDY1NzIxZS0wMSwtNS40NzM1NTU3NDI5ODY2NjQzNjNlLTAxLC01LjUwNzk5NDI1NzA2ODQwMTUxMWUtMDEsNy45MjA0MTQ5ODQyMjk3NDIyMTdlLTAxLDEuNDQxMDY0ODUxMjMyMzE4MjAwZS0wMSwyLjMzNDU4MDc5NjYyMzE4MDE4OGUtMDEsMS4xMTg3MjM5Njg5NjI5ODM1MzllLTAxLC02Ljc1NzAzMTQzMzcxNjUwOTM4M2UtMDEsLTEuMzcwNTcxOTE3OTYwNjg4MzM1ZSswMCwzLjEwNTY0NzEwNDIwNDc4NDUxNGUtMDEsLTUuMDcwMzY2MzIxMjU0NDM4MDkxZS0wMSwtMi4wMTA3ODIyNjg1ODU4Nzc4MzBlKzAwLC0zLjkyNTY3MjU3OTY1MTUyNDYwN2UtMDEsLTEuMDkyMjE3OTQxMzQwNjIzNDQ0ZSswMCw2Ljk4NjUwMjM0MzA3NzU1MzAyM2UtMDEsNS4yMTYyNTIyNzI0MDMzOTk5NDhlLTAxDQo1LjkwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsNC45Njg5MzE0NDgzODQ2OTU4MDRlLTAxLC02LjY1MDQxNjE4MTU4NjkxMDA1OGUtMDEsNy4zMTU1MTU4MTg2MjE1Mzk2NTdlLTAxLDMuMTk2NDk3ODMxMzQwNzI5OTU2ZS0wMSwtNC4wOTg1NDUzODQzOTgxOTUwNDZlLTAxLC00LjUzMzM3NDMyMTM4NTE2OTA0OGUtMDEsOC45MjcwODE1Mjg3MzcwMDIwMDNlLTAxLC00LjczNjA0MDU2OTYzNjU4MDkzMmUtMDEsMy4wMzY1NjQ3MzUyNjI3ODI4MTBlLTAxLDEuMDMzOTU2OTg2ODEyNzgzNTg1ZSswMCwxLjkwOTM0MjYyNTU1NzEwODY1M2UrMDAsMS42NjM4NzMxMjQ0Mzc3Mjk2MTFlKzAwLDkuMDA4MjI3NjQyMDkwMjk4NDcwZS0wMSwtMS41MDU5MTEzNTE1NzEzODcxMTNlKzAwLC02Ljg5MDQ4NDI5NDE3OTcxMjg2NWUtMDEsLTUuNDgwODcxODc0NzI1MzU1OTc0ZS0wMSwxLjY1MzE0OTgzMjU2NTMyMDg4N2UrMDAsLTYuOTkzMTc5NDA5NzIwOTA4NzkwZS0wMSwzLjg2MTY2Mzc3MDk4MzY5MTUxM2UtMDEsMS4wMDg2NzA2MzI1NzMxMTc4OThlLTAxLC05LjM1MTI3MjA5NDM3NTQ0MDE1OGUtMDEsMy44MTgyNDAwOTYxOTM4Mzg0MThlLTAxLDMuOTgyOTYwODYxOTc0OTI1MTYwZS0wMSwtMS4yNTU3NzQ4ODE3NDE1MDE1MzZlKzAwLDEuMjIyODc3NDQ3MDUzNDA5ODM4ZSswMCwtMi4wODY1MTAwMjg4NTUxODc2NjBlKzAwLC01LjkwNzU3MTUyOTA5OTYyMDAyMmUtMDEsOS43MTk3MDI5Mzg2NTU3NTU0MDllLTAxLC0xLjE5MzI1NzgzMzQ3NDAzOTEzMWUrMDAsMy41MDI2NTkxOTU2MjAzMDAxNDhlLTAxLC0xLjI5NjM2MDM4ODI3NTQyOTk4N2UrMDAsLTkuMzAyNDE0NDQ0NDIyMzI4NjIxZS0wMiwtMi4zMTM3NzMxMTMxNzIyMDAzNTdlKzAwLC04LjQyNTcxNzAxNzEzMDA4MTAzMmUtMDEsLTEuNTQyOTIxNDQ3MTU0MjkwMjQ5ZSswMCwtNC4wMTc2Mzc0MjEyNjUwMDYyMjZlLTAxLC00LjE1MjMxMzk1ODIxNjU3MDc4OGUtMDEsLTYuNzM2NjQxNzEzMDkxMzk2OTIxZS0wMSw3Ljk3OTEzMTk2NTY2NzQ1NTMwNmUtMDEsLTguODY4Nzk2MDM4NzE0Mzc3MTYxZS0wMQ0KNi4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDYuMzQzODY2NzMxODkwNTExNzU2ZS0wMSwxLjYyOTI3NTc2OTk1ODg2MTU4NmUrMDAsMS4zOTA2NDE1MDMwNDY4MjU1NDRlLTAxLC04LjU3NjcwMjA0NTc1Mzk5NjYzOWUtMDEsLTEuMjQ5MzM4NTE0ODYxNTQyMzQ5ZSswMCwtNy4wOTc4NTEwMDExOTQ5OTI0NjBlLTAxLDcuMDQ2NDI3MjA3NDk4OTA5ODI4ZS0wMSwxLjU1NTkwNzM0OTY4ODk3NDk4M2UtMDEsOS4zNjc5NTIxNjI1Mzk4ODg3MTZlLTAxLDcuNzAzMzA4NzkzMjcyMTIwMDM2ZS0wMSwxLjQwODEwNjUxODc4MjM1OTA5NmUtMDEsNC43MzQ4ODI2MTY2NjQ2MjE4NDZlLTAxLDEuODU1MjQ2MjA5NDIwNDc5MTMxZSswMCwxLjQxNTY1NjIyNjE3NDY4MDEyMWUrMDAsLTMuMDI3NDYwMTY5MDQyNTMyMzQ1ZS0wMSw5Ljg5Njc5NDQxOTM1ODkwMzAyOGUtMDEsNS44NTg1MDgwNTgxNzkzNTU4MjZlLTAxLDEuMTM2Mzg4MDc3NTM5NzM5NDcyZSswMCw2LjcxNjE2NTcyMDM1OTA5NzQyNGUtMDEsLTkuNzQxNjc0MzUwNDI5OTAwODE5ZS0wMSwtMS42MTk2ODQ1NjUzNzI3MDA1NThlKzAwLDUuNzI2MjcwMTcyMDUwODU2ODY2ZS0wMSwxLjkwMjYxODE5ODM2OTgzMTE0OGUrMDAsLTcuNzU2NjQxMDc5Mzk5NzA2NDg0ZS0wMSwtMS44ODA4OTczODA0OTY1MDIwNjllLTAxLC0xLjAzNTc0NzcyNjE5NTIxMjgyNmUrMDAsMS4xNzc4Mjk1MDQ3MDU2NTk5NDZlKzAwLC0yLjMwNTE2Njg1NTA0MzUyMDcwMmUrMDAsLTIuMjYzNjYwMzAxMDM1ODA4NTA5ZSswMCwzLjc1MDE5OTE5ODIwMTUzMjU4MGUtMDEsLTguMjM0MzY0Njc5MTM1MjExNTI5ZS0wMiwtNC43OTYyMzAxNTA3MzgwNjUwMjNlLTAxLC0zLjAxMDk0Nzg2NTIzNDEzNzA0NGUtMDEsNS4zNjk4NzkxNDQ1NjM2MTYyNThlLTAxLC00LjEzODAzOTg5MDQ5NjY1MDg4NmUtMDEsLTEuMDk2OTI0OTcxNzMzMTEzNTQxZSswMCwtOS4yNzM2MjkyODA3Mjk2NjI3NDllLTAxLDguODgzMzg4NjE5OTY4NDI2NDM2ZS0wMSwtNS4yNDc0MTk1NDk2MjIyMDMxMzllLTAxLC0xLjM4NTI3NzU4Mzc2NzE5ODIyOGUrMDANCjYuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwyLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsNC43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjAyMTc4MzI2OTQzOTcwNzM0OGUtMDEsNS4wNDk5NDcyMTc4MDAxMTE0NjVlLTAxLDEuMzI4OTYwNzQ3NTUzMjIzNDY1ZSswMCwyLjE3OTAzMzg3MTIxNjY4OTg0NGUtMDEsLTYuNTk3MTEyNDcyMDk2NzAxMTUyZS0wMSw0Ljc0MDA3ODY3Mjc3MDI5NzA0MWUtMDEsNy4yNzE3NDg3MDAyMDQzNjQ1OTFlLTAxLC0zLjg5MDUzMDY2NjM4MDY3NjAxN2UtMDIsLTQuNDU5OTM5MjcyNTU3MzQyOTMyZS0wMiwyLjYwMTMyOTA0OTM4NzY3NjcyOGUtMDEsLTYuOTg1NjQ5ODI1NjE4NDI0MzQ3ZS0wMiwyLjUwMTEzOTA2ODgzMTI1NTY5NmUtMDEsLTEuMDIxOTEzMzI0NDI2OTI4MjgyZSswMCwtMS4xNTA0Mzc3Njk4MTg1MDk1MzdlKzAwLC04LjM2MTExMzc5NTAwNzY4OTY5N2UtMDEsNi40MjIxMDk0MzMyOTQyNTg1NDBlLTAxLDIuNTg3OTc1NjczNDA2MDg3MTQwZS0wMSwxLjA0MDIzODk2NDI0OTU1ODY0MGUrMDAsLTEuODY2OTA5MjIxMTQ2MDk5NDE4ZS0wMSwtMS4xNDM2NDEzOTU4NDE4NDk2NTFlKzAwLDEuMTQ0NTUzNTM1Mjg0NTU3OTQ0ZSswMCwtMS44NzY3MDU1NTM5ODkyOTIzMjdlLTAyLDEuMjgzNDU1MDM2MjY2NTI1MzUxZSswMCw1Ljk3OTQ2NDkxMzkyMTgwNTkwMmUtMDEsMi4xODg2MTg2Nzg4MjI4MzcwMDVlKzAwLC0yLjE5NzcyOTg1NzEzMzYyMzQ1NWUtMDEsOS4wMDcyMzkwNTA4OTE4MDY1NDJlLTAxLDguOTEzNjQxMDYzNTI5NDQwNTIyZS0wMSwtNS41NTEyNjM0NTQ5NDQ0OTk0NjVlLTAxLC0xLjcyNDgyMzE3MTA2OTYwOTA4NWUtMDEsLTEuNDYxNzM4MzQyMjE2NzIyOTQxZSswMCwtMS41NDg3OTYxMzcwMDI2NjU3MThlKzAwLDEuMjY1Njg4MDE1MzA3NzQ5NjAzZS0wMSw3LjkzMDA3MDcwNjk3NDI3Mzc0MmUtMDEsNi4zODAyNDAzMzQ5NTQ1NDg4OThlLTAxLDMuNDAwMjQ1OTgyNTk2NTI2NDQwZS0wMSw4LjYzMDE3MTUzMTUxMDkxMzk4NWUtMDEsLTUuODk2OTc3OTU2OTkzMjQ3ODk0ZS0wMSwtMi43MjUzMjc0ODQ4Nzc1OTQ5MDhlLTAxLDcuMzc1MjE1MTM0MTM4ODE3MjQxZS0wMQ0KNS41OTk5OTk5OTk5OTk5OTk2NDVlKzAwLDIuODk5OTk5OTk5OTk5OTk5OTExZSswMCwzLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDQuMzMxMTg3Mjk0NDg5MzMzMTUxZS0wMSwtMi4xMDE4ODgxMzc5Njc2MjMyNDllLTAxLDEuMzIwNzk0Mzg2MTI3OTE0NTU1ZSswMCwtMS4yOTIwMDEyNTEwNDcxMjc0ODZlKzAwLC01LjE4Njc4Njg3Mjg4NTkyNDU0OWUtMDEsLTIuODMzOTc3NzQ0NTYyNTI0MTU5ZS0wMSw4LjE2NTM0ODc5NzczNzcwMzcyM2UtMDEsMi4zODUxOTc5MTUyMzUxNjIzMjJlLTAzLC0xLjI2MTQ5MTc0Njc5MDYxNTA0M2UrMDAsNS4xNDAwNDE3OTgxNjA2MzUwMDBlLTAxLDEuMDg3NTQ2MzE1NDY2ODk0NTA5ZSswMCw3LjM5MzA0NTMzMTMzMDI2MjQyNmUtMDEsNi4xOTE1NDkyMTYwNTQ4ODkwNjBlLTAxLC0xLjg3NDMxMzQ5Njc0MTA2ODE3NWUrMDAsLTguOTk4ODY0NzY3NDM0ODQzMjA0ZS0wMSw0LjgyMDgwNjA4NjcyMjAxMDk0MWUtMDEsLTUuNDg4ODE4NDc1NDM4ODQ4ODc2ZS0wMiw1LjIyNTU3NjAxOTk4ODExOTYwM2UtMDEsLTEuMjY2MzQyNjc2OTYyOTU0MjE3ZSswMCwtNi4xNDk0NzY0Mjg0ODg2MTQyODJlLTAyLC0xLjM4OTc4MTAxODg5NjIwNjc1NWUrMDAsLTEuOTUzNjc4NTYyNjE5NDA2NDIyZSswMCwyLjk1Nzc5MDg4NTA2ODg3MjIyMmUtMDEsOC40MjU4ODc5NjQ1Njk4MDM3MTJlLTAxLDIuNDU2MTY0Mjc5MDE3NzU3OTEyZS0wMSwtMy4yOTk2NDgwMjY0NjY2MDk2MjRlLTAyLC0xLjU2MjAxNDM0MTgyOTI2NjI0MGUrMDAsMS4wMDYxMDcwNjcwOTc1NDcxNTllKzAwLC00LjQwNDQ4OTczNzU5NDEyNzA2OWUtMDIsMS45NTk1NjIwMDUyMDU3Njc4NDNlKzAwLDkuNDIzMTQzMDgyNzY5NjY3MTY3ZS0wMSwtMi4wMDUxMjU0MjY2NTIxNDgzMjRlKzAwLDcuNTUwNDk2ODAyNTU4ODc5MjI4ZS0wMSwtMS4zOTY1MzUyMzc1NzMxNTcyMjllKzAwLC03LjU5NDk1NDkwNDI5MDY0MDU3NGUtMDEsLTIuNTA3NTY2NzY3NjAxNDk1MTA2ZS0wMSwtOS40MDYyNDUwMzYyNjAzNjYxMjFlLTAyLDMuOTc1NjUyMTU2MTc0NjYxNjExZS0wMSwtMS4wMjI4NTUwNDA4MDQyMTQwNzdlKzAwLC0xLjE1MDY5MjAwNDI1NjY0Njg2MWUrMDANCjYuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsNC40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCw2LjAwNjA1MjAxNzMzMDc2MDc3M2UtMDEsLTEuMzI1MDI2NzkzNDAyNjY1OTQ0ZS0wMiwxLjc0MzczMDQ4NzAxNTI1NjE4MWUtMDEsLTIuMTkzNjgzMzUxNjk0NjYwMTExZSswMCwtMS43NzEzNzM4MzMxNTMyMzU1NDRlLTAxLC04LjkwNzI5MTgzMDYxNDk1ODQzOWUtMDEsLTkuMjA2MjYzNzMwMTY4NjkzMzcxZS0wMSw5LjIxOTM0ODA0MjI0NTc3NTE5OWUtMDEsLTEuMDk1NjcxMjI4OTcyNTEyMzQ1ZSswMCwtMS4wOTI4OTY2MDYzMjYwMzAxNDBlKzAwLC0zLjMxMDEwNjAzNDAxNzQ1ODczMmUtMDEsNC41MDI4ODgzMDY0NzM0NDIwNzBlLTAxLC04Ljg0MDE0NzI5NzQ4MDg2MTQ3N2UtMDEsMS4yMzQxNDQwMzU3ODAwNjE0ODhlKzAwLDEuNDQ5ODQ3NTI1MzYxMjE4ODU4ZSswMCwtOC44MTQ0NzA2NjQ2ODQ2MzgyNDZlLTAxLC0yLjQ1MDgxNzU1NTc2ODU1NTc1NmUtMDEsLTcuNzg2NzU0NzI2NTc2MTI5NDM3ZS0wMSwtMS42ODUzODIxMDQ4NzEyMjcxOTNlKzAwLDMuMDMwMTEwNTA0NTYxNTczOTM2ZS0wMSw3LjMzNTk0ODY4MjI5MzY5NTg5OWUtMDEsMi4wMTE4NjQyNjMxMjY1NjE1MjVlKzAwLC04Ljk3NDA5NTAzNjMxMzM2OTgwMGUtMDEsMS4zMzYyMzUwOTA4MTI2MjEwNDBlKzAwLDEuMzQyMzUzNjkxMjU3OTUzMjMwZSswMCwxLjk3ODUzMzA5NTY3MTUzMDc5NWUtMDEsNi4wMjE2MzQ4OTU3NjA2MzgwNDBlLTAxLDguNzMyNzMwNDgzMDA3MDM2MjQ4ZS0wMSwxLjk3NDA5OTk0ODI0MTg5OTQ5NGUrMDAsNC43NzgwODU2MjYxNjQ2OTQyMzNlLTAxLC02LjAxMzc4ODU1MDM2ODUyMTM2M2UtMDIsLTguNjYxNjg3OTkwMDc0NzIyMzQzZS0wMSwzLjA1MzIwNzU1MDEyNDk4MDU3NGUtMDEsMS4wMjQxNjQ5MzI3NzMwNjk5NjllKzAwLDIuNDQ2MTAzNjEzMjk0NzE5NDgxZS0wMSwtNy43OTkyMzI0ODkyNTAwMjk3NjVlLTAxLDguOTA3NjIwMjQ5NjU2MzMzOTIyZS0wMiwtMS4yOTE1MzQ4MjQ2MDExMzg3NzZlLTAxLDIuNjQ3Mzg3NTc3NTU3MDcyNjU4ZS0wMSwtMS42NjE4NDgzNjcyMTgyNTAwMjJlKzAwDQo1LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsNS41MDc4ODYxNDEwMjczMTM4ODdlLTAxLDUuOTU0MjMxNTY3NjM3MjMwMzgyZS0wMSw0LjQ0ODUzNDM4MTg2NTA4NTc2M2UtMDEsLTMuNzYyODE3MTQ1MDI0MDI1MjM5ZS0wMywtMS44MDU5MzYyNjI2MDM0MjE2NjBlKzAwLC0xLjkzMjI3OTE5NzEyNjM0MDg4NmUtMDIsMS4wNjA3MTQ5OTkzNDIxNjk2MThlKzAwLC04LjYwMTI4ODc2MjkyNDYxMzc1MWUtMDEsLTEuOTg5MjY5NDY2MTYxMjgzNzUwZSswMCwtMS41NDA1NTc5NzE4NzA2OTM2NTRlKzAwLDMuMTQwMjU2OTE4MjA2MDMxMzY3ZS0wMSwzLjcyODc2MDA4ODUyNDM3NTQ2MGUtMDEsOC44NjI5MzE5NDYyMTQ2ODA1MDFlLTAxLC01LjUyNTg5OTU3Mjk2NTI0ODI1MmUtMDIsLTEuNTAwMzI4Mzc1OTc4NTcwNjA1ZSswMCwtOC4xODUwNDE0MDU5MzY3NTcxMDhlLTAxLDguMTg4MzkzNzI1OTkzNDc4MDM0ZS0wMSwxLjQwNDk1OTA3NDM5NDc1OTAzM2UtMDEsNi40OTgyOTYzNDY3OTk3ODY3MzhlLTAxLDQuMzQ3ODg4MDU0NjEwMzk3MDY4ZS0wMSwtMi4wNDk2MDU1MTczMDI5NTkyNTdlLTAxLC0xLjc0MDA2ODM3NTA4MDMzNjk2MGUtMDEsMS44NTcxMDIyNjk3NTU4NTk2ODBlKzAwLDQuMTQ2NzQyNjY2MDkyMjA5MDk1ZS0wMSwtMS4yODU4NzU1MDMxNjM2MDU5OTNlLTAxLDQuNTU0MTk5OTA5MzY4MDk1MTU2ZS0wMSwyLjIyOTA1ODE5NjI0MjczMzMyNWUtMDEsLTIuMTU3MzU2MzczNDk0NDYxMTg4ZSswMCw2LjUwMDg0NTE0MzcyMzE0NDAzN2UtMDEsMS44MjA5MzkyNzQwODk2NzU0ODZlKzAwLC03LjgwMjc5ODY4MzkwMDY0MDI0MmUtMDEsMS40NTQwMzU3NDg4MzkxNjcwODZlKzAwLC0yLjU2ODY5Njk3MzMxOTE2OTQ2M2UtMDEsMi45MzQ3MTM5NzY0OTgyMjI3NDNlLTAxLDEuMDcwMzYwMDE2OTczMTczOTU2ZSswMCwtNy4yMDAwMTQzMTI5MDgwOTE3OTZlLTAxLDEuMjQyNDkzOTEyODE4NDcxMzI0ZSswMCwtMS4yMTQyMTcyODEzNTkzMzkyNjJlKzAwLC04Ljc1MTU0NzQ4OTEzOTE2NDI0OWUtMDEsLTUuOTM1MjAzMTczNDc1MjU4NjA5ZS0wMQ0KNS43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDIuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDYuNjIwMDUzNjY0NTE5MDIyMjE4ZS0wMSwtMy40MDg3NDQxMDU2OTQ3MDc2NDllLTAxLC0xLjUxOTk3NDQ1OTU4NTg2Nzk2NWUrMDAsLTIuMTY1MzI4NzE4NDk4Mjg0MTc3ZS0wMSwtNy44NDIyMTM4MjUzNDM4Mzg5MjllLTAxLDcuMzEyOTM2MjA4NDAzNjg1MzAxZS0wMSwtMy40MzIzNTA1NDQ1NTEwMzI3MjNlLTAxLDcuMDc3NDA3NTkwMDY1MTM2NDc4ZS0wMiwtNC4wNTQ3MjQ1NzE0MDY3MTMxNjNlLTAxLDQuMzM5Mzg5NjgyMzAyODg5MzUxZS0wMSwtMS44MzU5MDc2MzQ3MDU1NDE5NjllLTAxLDMuMjUxOTg3MTQ2ODcwNjUyOTM0ZS0wMSwtMi41OTMzODg1NjQ3NDE3MTAzMTJlKzAwLDkuNzI1MDg3Njk3Nzc4NjE0MzcxZS0wMiw0LjEzOTEzNjcwMTEwMjMzMTExN2UtMDEsLTEuOTkyODAwNTQ5MTQ1OTIwMjUzZS0wMSw2LjY5MzkyNDcxMzkyNTQxNDMyN2UtMDEsNy4zODYwNzAyODk5MjgyMDcxMzNlLTAxLDEuMzA0MjEzODkxODQ5NTAyOTgyZSswMCwxLjA0ODExNjA4MDcyMjgxNjUzNGUtMDEsLTEuOTEzODAwNzA0NjY5OTgxMjAxZSswMCwtMi4yODU0OTk0NDg3ODk2NDUxNzJlKzAwLC0xLjYwMTg0MDk1MjA3NDUxNzU5OWUrMDAsLTMuNzkwNzA2MTE4NDEzNjE5ODE4ZS0wMiwtMS41NzMwNTI4ODI4MDU2NTY2OTRlLTAxLDIuNzYyMzk4NTIwMTk5NzM3NTI4ZS0wMSwtNi4yNTI0NTkyMjU1NzE3MzgxNjZlLTAxLC03LjM2NDkxMTcxNTA1NzQ4Mjc2NmUtMDEsNS41NTA0Nzk0MjQxMDQzNDA5MjBlLTAxLDYuNTU5MjQ0MTEzNzI1MDE5MDMyZS0wMSwtMi41NjY1MDEzNTQ4MDQ4MDgyMzNlLTAxLC0zLjg0NzY2NTgyMzg5NTMyOTg1MWUtMDIsNC4wNDMxNDM0MzMyODk5MTEzMjZlLTAxLDUuMDQzNDM1NzUxNjI5OTQ1NTA3ZS0wMSwtMS4xNDM5ODA2OTk1OTg3NDAyNjllKzAwLC03LjE5NTczODU1OTE3OTUwNzU1NGUtMDEsLTEuMjMwNTQ2MDQ1NjQ1Mzg2NzIxZSswMCwtNS4wNjkwNjYxNDgzNjgzMDYzNzllLTAxLDguMTIzMzM1ODkzNDE4MzEwODYwZS0wMSw1LjQ2MjcxODY2OTQzNzY1NTA1MGUtMDENCjYuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCwyLjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsNC41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwtMS4wOTgwOTc5NjAzNjI1NTg2ODllKzAwLDUuMTIyNjY3MjY4MjU5ODE4NDQxZS0wMSw4LjU4NDMxMDUzNDI0NTE5ODYzMmUtMDIsLTQuOTM5MjY3MDcwODU5MjA2Nzk5ZS0wMSwtMS40MDY0NTk2NTUxMDM2MzEyNDZlKzAwLC0xLjc0ODIzMzcxNjE3NzY2OTUzOWUtMDEsNi43OTk0NDAwNjExNTk1NTUxMjZlLTAxLC0yLjE2MzA5NzY0ODM5NjEyNTcyN2UrMDAsLTMuOTYxMjMxOTc3NTE0NDk0OTYyZS0wMSwyLjI1NDI4MzY5ODgwNDk2MjM3N2UrMDAsNi43MjYzNjcxODU2ODA5MzgxNjZlLTAxLDIuNTk4MzI0OTUwMDM0NzU5OTM5ZS0wMSwtNy4zNzE4NTE2OTU3MDkxNDA2NzNlLTAxLC02Ljc4MzI5ODM3ODczOTY5NzIxMGUtMDEsLTguMzI4ODM5NTY5OTk2MzM2NjIzZS0wMiwxLjYwMjg2MzYyOTM3NzEzNTg5MGUrMDAsNC42NTU4OTE5MDg5NDkzMDUwNDdlLTAxLC04LjcyMTU4Mzk3NzcwODIyNjAyMWUtMDEsMS4xNzY3ODY5NjIzODM4NjM4MjJlKzAwLC0yLjkyNTk0MjA3MTU4MDkwNzAyMmUtMDEsMS42OTczNDY0ODEwMTM5NDkxMzhlKzAwLC01LjY2NjAzMDI0NjM3NzA0MDY2OWUtMDEsLTEuMDAzMjY1NzU2OTAzODg4OTcyZSswMCwxLjc0NjI5NTc3ODEzNTY5OTk3MmUtMDEsOS44MjMyNjk4MzgwMDI5ODAzNzBlLTAxLDEuMDM3NDQ0Nzk2NzMwOTEwMTY4ZSswMCwxLjU5MTkxNzY2NjY4ODExNTE4NWUtMDEsLTkuODgwOTY2ODc5Njg2MTExNjQ4ZS0wMSwtNS4wNTM0MDcyMTg5Nzg4NDkyNThlLTAxLC0yLjAxODI4MTg2ODM1NDIxNjUyNGUrMDAsLTkuMTMxMjE1Mzc1Njg4MjAxOTYzZS0wMSwtMS43ODQ1NjgxNDg5NzI2MzExNjNlLTAxLDMuODkwMDIxNDA2NTM0NzkxNTU5ZS0wMSwtMy4zOTQ1NDMyMTQ2NDc3OTEwNzRlLTAxLC01LjY5NzkwNTQ5Nzc3Mzk2NjgyMWUtMDIsLTMuOTYxODU0NDQ3NDk4MTY5Mjg1ZS0wMSw3LjUxMDI1MzA0MTg5NzcwMjA0MmUtMDEsLTguOTkxMTI5Mzg0MjY1Mzg4MzI1ZS0wMSw4LjM3NTQ3OTE0MTQ2MzI2NDU1NGUtMDEsMS45NjA4ODA4MTI1MTM5MTA1NTRlKzAwDQo1LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMi41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDMuODk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsNC43Mjc4OTY1NjAyMTkzMTEyNjJlLTAxLC01LjI3MDkxNjEwMjI0MDQxODI4OGUtMDEsLTUuMzYyNzAxNDQwODY3ODUwODMzZS0wMSwxLjIwOTgzNzIyMjE4NDA5NzYxNmUrMDAsLTEuMTI2NTg5NDI1ODcxOTk3NTA3ZSswMCwtOS41MzgwNDQyMDI3MjU2Mzk1NzVlLTAxLC0xLjE2NDQ0ODQ1Mzg3MDQ2NDQ3M2UrMDAsLTEuMjc4NTEzODQwNTIwNjg2MTczZSswMCwtMS4wNDQ4MTYzMTkzNzk4NTY5NzNlKzAwLDcuODk5MDQ5NDE3ODU0OTMwODY2ZS0wMSwxLjEwMjI4MjU2NDU4ODAyNDMxNmUrMDAsLTYuOTcwNzMwNzIzNjAxODMxMjE0ZS0wMSwyLjA3MzM0MDQ2MDQ1Njg5ODYyNmUtMDEsNy41OTE1NjY3NTEwODIzNDE0NjllLTAxLDEuMDA1NjQyMDMwOTcxNjI5NjMwZS0wMSwtOS41NDk0Mjc1NzYxNzIzODkwMjFlLTAxLC0xLjQ3MDQwMTczNTEzODA4MTM2N2UrMDAsMS4wMTA0Mjc1NTMxMjU1MDg2OTNlKzAwLDQuOTYxNzk0MTIyODgzODA0NzI1ZS0wMSw1Ljc2OTU1ODkzMzk4NjUzODI5NmUtMDEsLTEuMTA3NjQ2OTAwOTAxMDMwMTI5ZSswMCwyLjM0OTc3MTkyODg5MDUxOTE2OGUtMDEsNi4yODk5OTU4NzQ1NjgyMTYwNzJlLTAxLDMuMTQwMzM4NDM2NDcxNDU1Mzg2ZS0wMSwtNy40NTAyMzIxNjgwNzY4OTAxNDllLTAxLDEuMDEyMjYwNTEwMDY1MzM1Njg0ZSswMCwtMS41Mjc2MzE5NDgxNzg3NzM5MDJlKzAwLDkuMjg3NDE5MjQ4MDY5NDE1MTAxZS0wMSwxLjA4MTA1NTk0NDA4NzA3MzI4NGUrMDAsMS41NzIzMzAzMTc1MzUyMjQ3ODZlKzAwLC0zLjQyNDkyMTkwMjUwNDQyOTE4M2UtMDEsLTkuOTk0MzAwMTY1NjE1MjA1Mjg5ZS0wMSw3LjkzODgwMzYyMzA4MzgwMTA1M2UtMDEsLTYuOTkyMTUyNzkwODY5NzQzMzk1ZS0wMSw0LjM5OTU1MTE0NDM5ODg3ODQyN2UtMDIsLTMuMTc0NjIyMTcxNjAwNzE5NDY3ZS0wMSwtOS4wMjA3MTk3MTQxMzA4NDgxNjZlLTAxLDMuMjA5OTk0NjYxODQ4OTE2MTMxZS0wMSwtMS4zOTIwMTU5MTY1NTgwMzU2OTNlKzAwLDUuOTIyMDU2ODE2NDQwMzk0MTY3ZS0wMQ0KNS45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS44MDAwMDAwMDAwMDAwMDAwNDRlKzAwLC05LjY2OTMxMDg4NDU2NzM0NTg4N2UtMDEsLTEuNzMxNzMxMzQ2NDY3OTI2MjU4ZSswMCwtNS4wMTA3NDU4NzkwMjkyODM4NjdlLTAyLDQuMzE2MzM4NTI4MTEyMjMyMzk4ZS0wMSw1Ljc2OTM0NTk3MDUzMjI0MzYyOGUtMDEsOC4xODM1MzczMDgyNzE2MTM0MDllLTAxLC0yLjM1MzY0MDM5OTY5MDQxMzYwOWUrMDAsLTEuMDA1MTQ0NDMwOTU2NjcxNDk3ZSswMCwxLjA2NjUyMjk0NTAzMDMyMTI0NmUtMDEsMS41MTkwMDMyNzk5MzYxNDU0NzllKzAwLDcuODM3NDQ0OTM2NzQ3Mjc3NjAyZS0wMSwxLjkwMTM0MDA1MTg0ODExMjUwMGUrMDAsLTUuMjQ5Mzk0MjI5MTM5OTg5NzY1ZS0wMSwyLjc0NDE2OTk1MjgyMDA4NjM1NmUtMDEsLTEuMDk5OTcwODA3NTY5MzA3MDk2ZSswMCwtNC4wNDM1MjIxOTYyMzk5OTc1MzVlLTAxLC03LjM1Mjk1NzE4MjgyOTczNTc2MWUtMDEsLTYuMzM5ODg2NTkzMTY3MjEzMjU4ZS0wMSwtMy45MzQ0OTEyMTE4NTY2MzI3NTNlLTAxLDIuNzE3NTM5ODkwNjgwODkwNzM5ZS0wMywyLjIyMTI2NjQ1MTY0ODQwODgxNmUtMDIsNS40MzQ1MzQzOTU4MjcyNTQwNjFlLTAxLDEuMzk5ODg0NjczODY4NTkzNTU0ZS0wMSwtMy40NDA0NTYyODg0OTYyNTM2MjNlLTAxLC01LjIyNTc4NTQxNTMxOTQ2NjA1NGUtMDEsLTMuMDcxMzE3MjAxNTg2ODQwNjI4ZS0wMSwtNC40OTAzNzE0MTQ0Njk2NTU0ODdlLTAxLDQuOTA5NzEwNTUxODE5Nzk2NDMxZS0wMSw4LjY1NTI1MTkwNjcxMjYyNDM0M2UtMDEsMS4yNzQwNDQ1Mzc5NDcwODQ2MTBlKzAwLC03Ljk3NzAyNzU5OTQwNDE3MjgzMWUtMDEsNC42OTM3MjIyNTMzODc1MDA1OThlLTAxLC0xLjM5NDY3OTY0MTU5MjY3NTY1NmUrMDAsMy43MzE3NDcxODI1MjU3ODE0MTRlLTAxLDEuMDgyNjcyMjgyMDkxMDY0NTg2ZSswMCwtMS40OTU4OTUwMTY2Njk5NDk3MjllLTAxLDEuMDcyNjM2MDQ3MjU4ODczMTgyZSswMCwtMS4xMzg1Njc4NzAzMTU0NzY2ODJlKzAwLC04Ljg4NjQ1MjgzMDkxNjM2NzA2M2UtMDEsLTEuMzU4MDk4NDI2NDM2ODY1MzQ3ZS0wMQ0KNi4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDIuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDEuMDIyMjEwMzU0NTg1ODI0MzIxZSswMCwtNC4xNzQyOTQ1NjM0MTk4ODE5MjBlLTAxLC00LjUzNTUzMTAwOTA4Nzc0NTk3OWUtMDEsLTkuOTE2MjgzNTgzNzgwMjA2NTc5ZS0wMSwyLjAyODgxMDQ0NDQyNjIxNTg4N2UtMDEsMS4yNDY2OTUxNDA4OTQ0MzU1NjFlKzAwLDcuMDA2ODAxMDkwOTM2OTIzODI2ZS0wMSw2Ljk2NjUwNjU0MzM2MjY0NzE4NmUtMDEsLTIuMDY5NzQ0NzQ5MjM2NjQwMjU4ZS0wMSwtNS42MzMwOTM1OTI2MzkxNDQ1NTNlLTAxLDYuNzcyNDU5MTY0MTYzNzAyMTk0ZS0wMSwtMy4xOTExMDc1NjM0MTQwODY4ODRlLTAyLC0xLjczNjA4MjM1NzE5MzgxNzQ4M2UtMDEsOC45ODI0MDYyMjQwMzYxNTU3NDBlLTAxLC0xLjk3Nzg3NDUxNjcyNzI5OTAyNmUtMDEsLTguMzc3NzYyNTkzODUyMDU3MjM4ZS0wMSw5LjA5MTg4NDk1MzMwOTY2MTI4OGUtMDEsOC4wNzE5ODkwNDMzODY2NjgxMTdlLTAyLC0xLjAzNzAyOTM0Mzg0ODY5MTk0MmUrMDAsLTEuMTEyOTA1ODk0ODcxNjE2MTc1ZSswMCw5LjU0MTE4NzU4MjY4NjY4MTgyM2UtMDIsMi4zMzc0MDk2NjE0NzgyNzU3ODBlKzAwLC0zLjkyODIwNjAzNTQ2MjA4NDU3OGUtMDEsLTMuMzYyNzM4NTkwODU1Nzg0OTcwZS0wMSwxLjUyMzc3MTE5NzYxNzA1MzM3NWUrMDAsLTUuNzI4MTE5OTc5MDUxNTM4NzE4ZS0wMiwtMS40NDg0NjY4NjMyNDc5ODgyMzRlKzAwLC0xLjU3Mjc5NjQ1MjU0ODE3MzI0MWUrMDAsMS4yMjY2NjM5NzM3ODc0ODAyNjZlKzAwLDYuNjYzNTQ1NDIyNTAxODg4NjM4ZS0wMSw4LjI2MTI1NzA4NDMxMTkyOTI4OGUtMDEsLTUuNzc1NjU1ODM3ODcxMjc0ODE3ZS0wMiwtNy4yNjcxMjAyNTk4Mjc5NzYwNDhlLTAxLC0yLjE3MTYzMTE1NzI0MTY2OTY2M2UtMDEsMS4zNjAzMTIxNzM3NDM3Njc2MTZlLTAxLC04LjM4MzExMTU1Njk4NzAxMDcxNWUtMDEsNS42MTQ0OTkwOTU1MTEyNjcyNDZlLTAxLC0xLjI1OTU5NjE2ODc5OTcyMTQ3MmUrMDAsLTMuMzI3NTg3NjQ1NzUyMjM3NDIyZS0wMSwtMi4wNDAwNzg3MjQ3NjUwMjg5OTVlLTAxDQo2LjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMi41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsLTYuOTEwMTk4MTMxNzUzNjg1MzU4ZS0wMSwtMi4yMDU1MDUzNTUwMTk4MjIwMzRlKzAwLDQuNDc4Njk2NjQxMTEyNTI1NjM0ZS0wMSwtNy41NTc1MDc2MDQ0MDI2NzEyMjBlLTAxLDEuMzI1NzA3OTU5MzI0MzcxNDY1ZSswMCwtMy40MTk4MjI3NzY4NDA1MjI2MDVlLTAxLC01LjQxMzU5NTg4NDMxMjIwNTYxOWUtMDEsOS4xNTIxOTQ2Nzc4ODc3MDgwNzRlLTAyLDEuMDUzNDM5NzQ4NjMwNDQ4MDkyZSswMCwtNS42MzQwNzY2MzExODE2OTY5OTJlLTAxLDEuMDE0NzM3Njk0ODI5Nzc2ODI2ZSswMCwxLjQ0MDMwMzY0MTAxNzYyMjY0OWUrMDAsOS45MDMyMjgxMDY1NTk0NTUxNzllLTAxLDEuNjI2NDMxNDkwOTkyMjU3MjU2ZSswMCwxLjI5MjY0NjAyMTAxMjQ2ODgzOGUrMDAsMS41MTQ4ODIyOTM4OTMwMDU3NzFlKzAwLDEuNjA0MzI2MzE5NDE1NjQxMTg5ZSswMCwyLjA4MDY5NTI5NjI5OTYzODA2NGUtMDEsLTQuMjkyMjM4OTk1NzIxOTgzMDg2ZS0wMSwtMi4yNjIyNDM2MzUyNDM4MDU3ODRlKzAwLC0xLjMyMjczMzExOTUyMTc5NTczMGUrMDAsLTQuNDgyODI3OTkxNTg3OTU1OTc0ZS0wMSwtMy44MTczNTA4NzI0MDU2NTk4NDVlLTAxLC0xLjUyNzk0NDYzNDAyMDg2NjA1NWUtMDEsLTEuMDAwNzYwNDkwMjQ4NzUwMTM0ZSswMCwtMS41OTU3Nzc2MTE0NDEzMTQwMjZlKzAwLC0xLjMwMjIzMTY2NDY2NzI2MjE0NWUtMDEsLTEuODk0MTc5Mjg4MTE3OTA1OTI0ZS0wMSwtOC4wNzU1NDA0MTU0OTg2NTk4NjNlLTAxLC03LjQyMTUyMTYxNjUwMzg0NTU2NGUtMDEsLTkuNDAxNTY1OTE4NzI0MDY3NDM5ZS0wMSwtMy45NjUyMzczOTAxNjMxNzc2NjZlLTAxLC04LjU2MzAyODI2OTk1MjUxMjg3MmUtMDEsMS4yNTk4NzUzMzE1MTcwMTU0NzNlKzAwLDIuNDA5OTY3MzIwNDUxMjEwNjQ4ZS0wMSwtOS43MjMxNzkxODAyNjUxNzIzNjFlLTAxLC0yLjgwNDQ3NzgxNDY3NDU0MTM4MGUtMDEsLTEuMTgwMjg1NjA2MzUxMTkwNjE5ZSswMCwxLjAxMjE2ODI5NTE3NDc4NzkwMmUrMDAsMS4zODQxODY3MjQ1ODA4MjAxNDllKzAwDQo2LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMi43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDQuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwxLjE5OTk5OTk5OTk5OTk5OTk1NmUrMDAsMS4yNTIwMDE5ODI3NTMwMzEzMTdlKzAwLC0xLjE0NDY5MjYzMTI0MjU5NzU2OWUrMDAsLTkuMTI2NzAxOTcyNjE3NTkxNTg1ZS0wMiwtNC4wMTU3MDY3NTUxMjkxNTkyMDBlLTAxLDUuNjIwMTMxMDU5MTQxODE2MzIxZS0wMSwtMS4wMDc5MDk4MDMyODM4OTgwMDllKzAwLC02Ljc1ODkxNjk0MDAxMDE2NTYzMGUtMDEsLTQuMTMyMTcwMjgzNTE4MDgwNjg5ZS0wMSwxLjUzMjg4NDY5MTMyNDIzODg3OWUtMDEsNi45NDEyODcwODEzNzg4NjQwNzdlLTAxLC0zLjI4NzI3NjkyNzM2NjA3NzkwNWUtMDEsNi42Mzk2NTA3NTUyNjIyMTg1OTVlLTAxLDguMjIwNzYzNTY3OTcxMzc3NTI4ZS0wMSwtMi4xMzIxNTIzNjg3MTgyMTAzNDVlLTAxLC0xLjI0NTY1ODEzMjg2NTU5NjkwMWUrMDAsLTEuMTcxMTkwMzM1NDM0MTQwNDE3ZSswMCw1LjkxNzI2OTc1MTUxNTY4MjQ2M2UtMDEsLTQuNzYyMjQ0MzYzMTQ2Njk0MzA0ZS0wMSwtMS43MTI2MjkzMjI2ODI0NTUxNTdlKzAwLDYuMTI5NTIzNjgxODMwMDA1ODQzZS0wMSwxLjI5NTU0NTIwNTQ2MjE4OTY1M2UtMDEsLTEuNDA1OTY3MDgxMTQyNjI4MzYxZSswMCwxLjE3OTQxOTk4MTIwMjY0NTc5NWUrMDAsOC4zNjYzNTk4NzE1Nzc0OTQ1MDBlLTAxLDEuMzg3NDUyNTEyOTAxNzkzMTExZS0wMSwtMS4yNzQzMTkzNjc3MzQ0MTY4OTdlKzAwLC0xLjQwMjMzMDUzMjg4NTI4MzA4OGUrMDAsLTMuMDcwNjg0ODY4NDE0MzY1MDU0ZS0wMSwtMS43MTM5MTUzODk1NTAyODk0MzZlKzAwLDQuMDUwODAyNzMxODQ0ODU0MTc2ZS0wMSwtMS40MTA4MjMzMTMzODAzMzY1MDhlKzAwLDEuNjQ5MTI3MjkyNTQ2OTg2MDM0ZS0wMSwtMi44ODEzMTQ1MjcyNjcyNjQxMTRlLTAxLDcuMTE3ODUyNjgwOTcwNDQxMjE1ZS0wMSwtOS4zNzk0NzU5NTI2MTQ4ODE4NzNlLTAxLDIuNzM3Mjk0NDk1MjQ3MjQwMDAwZS0wMSwtMS4zOTQ4NDAxOTI4MzQ2NDM0NDRlKzAwLDcuOTU1NDk1NTE3Njk0MDcwMDQwZS0wMSwtMS4xNDk2MTc2NjI3NzQ5NDY4NjllLTAxLDQuOTU4NTA2Njg5NjU0MzAzOTY3ZS0wMQ0KNi40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDIuODk5OTk5OTk5OTk5OTk5OTExZSswMCw0LjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLC0xLjMyMDUyNTM0NjgyODAzMjI0M2UrMDAsNC45OTA4NDI3NTY3MTc2NjU1MjllLTAxLDMuMDYyMDMzOTYzMDM3MDg1MTk0ZS0wMSwzLjYzNjk3ODkyNzEzMzYzMTEzNGUtMDEsMy4xMjYzMzk2MzAxMzk4NTk5MzhlLTAxLC0xLjkzNDYzODgyNzkwMzQ3NzM1NGUtMDEsMS4yNDEyOTkyMjAzMTU5OTA5MzdlKzAwLC0xLjU1ODk3OTg1NzY1NzAzNTcyOGUtMDEsLTcuMzkxNjkyMDAzOTA4Mjg2NzM0ZS0wMSwtNS44NzI2MTkzMzY4OTM4NTkwOTNlLTAyLC05LjUwNTE3OTQ1NDQ0NTMwMjc2N2UtMDEsLTQuNjM5OTY0MjMzMzA4NDQwMTAwZS0wMSwtMS43NzI0NjYxNjE4OTM5ODg4MTJlLTAxLC0zLjc5NTU0MTIwNjQ1ODU5OTE1OWUtMDEsMS45OTM5NzA3MjgwNTQ4NTc0MjJlLTAxLDEuOTQ1NzYxMzkxMzA2MzI2NzQ5ZSswMCw1LjcwOTQ5ODM5ODQ2MTIwNDY2MGUtMDEsMS4wNzIzMDA2NDcyODgwOTEzODBlKzAwLC01LjAzNzA5NDM3MzY4MjM2NTkwMGUtMDEsLTUuODcwMTYyODg1MDUxNDg1MzEzZS0wMSwtMy43ODE3ODA0Njg5Mjk4OTcyNzZlLTAxLDguNTI4ODkwOTcyNjg4NzcyOTQyZS0wMSwtMi4xNDgxMTg0NzgyMzA4OTc3NDNlKzAwLC0xLjAzMzE2NDc3NTI5MTM2NzI5OWUrMDAsMS4wMjMzNTg0NjgzNDIxOTg4MThlLTAxLC0yLjI0MDkyMzY3MDYyOTI4NzA0NmUtMDEsMS45Njc3Mjk2ODIxNDMwNDU4ODhlKzAwLDQuNDc2ODMyMTU3NDI2NTYzNDg1ZS0wMSwtNi42MjE5MTQ0MzUzMDQ4MDc2MTFlLTAxLC0xLjU3NzYwNzA2ODUzOTM0NzI5MGUrMDAsLTMuNDA1NjAwMzQ5Mzc4NjIyOTkzZS0wMSwtMS4zMDMyMjAwODI2Nzg0MTQ2MDRlKzAwLDQuNjY3NTA2NTA0MTg0MzUxNjQ2ZS0wMSwxLjYxMTA2MzIyMjQxNjc4NDUxM2UtMDEsMy4yMDAzMTkzMjA5MjczMTI4NjFlLTAxLDIuMDc5MTc2NjY0Nzk1MDM3MTU1ZSswMCwtOS4wNzQ2NTk4MTQyMDI5NzY2MjdlLTAxLC0xLjkyNDA0MjA3Nzk1OTA2NzUwOWUtMDEsLTEuMjEyNTE1NzQ0NDg4OTA4OTc1ZSswMCwtOC4wNTk4NTE2MTUwMTI1NDQ4NzllLTAyDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "6OYiRjb74HJ47HYxjw\u002BoYg==", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", - "ETag": "\u00220x8DAA274D23E87FF\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "bBZQ3Wu5Wqo=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Wed, 12 Oct 2022 11:42:35 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "9363c2f4-598d-45ef-aaf5-d0d9c9676d86", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "786f170d-cf16-4f22-b115-05be3818209e", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/dataset/iris-mltable/MLTable?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/dataset/iris-mltable/MLTable", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:25 GMT", - "x-ms-meta-name": "8cb83c6a-bbf2-43dd-995d-1f45a4cfbf9f", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e30fe48a-edcf-4f06-b48b-922c4264f6dd", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", - "ETag": "\u00220x8DAA274D249D0FD\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:25 GMT", + "Date": "Wed, 12 Oct 2022 12:05:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -2413,32 +2005,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:24 GMT", + "Date": "Wed, 12 Oct 2022 12:05:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-77b552f56ed47b11911a46a12ad726f8-bca877b3242771a4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5eb6a0d8944bdcc1ebae2d7647560912-c194307868098545-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "337ea310-c6dd-45a1-adfd-39ad6490cff9", - "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-correlation-request-id": "54d5325a-be36-4d07-b3f9-cb70a63a515f", + "x-ms-ratelimit-remaining-subscription-reads": "11912", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234625Z:337ea310-c6dd-45a1-adfd-39ad6490cff9", - "x-request-time": "0.088" + "x-ms-routing-request-id": "JAPANEAST:20221012T120552Z:54d5325a-be36-4d07-b3f9-cb70a63a515f", + "x-request-time": "0.117" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2453,17 +2041,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2477,29 +2065,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:25 GMT", + "Date": "Wed, 12 Oct 2022 12:05:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ca037857825712e0257a5ad149c4da7f-606f528f23f2b86d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-05f1b13e779636d7412dc5985f8642c7-4f32ced4e5032552-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f87c3578-f719-448a-ae5f-626c9a5f3cea", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "e89d4bc4-48c9-4a20-81a8-43ebecdfc957", + "x-ms-ratelimit-remaining-subscription-writes": "1147", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234626Z:f87c3578-f719-448a-ae5f-626c9a5f3cea", - "x-request-time": "0.117" + "x-ms-routing-request-id": "JAPANEAST:20221012T120552Z:e89d4bc4-48c9-4a20-81a8-43ebecdfc957", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2507,15 +2093,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -2524,9 +2110,9 @@ "Content-Length": "298", "Content-MD5": "HaKpUL6X1WimkPVJF2lHiQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:46:25 GMT", - "ETag": "\u00220x8DAA274BEE0FE30\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:45:52 GMT", + "Date": "Wed, 12 Oct 2022 12:05:52 GMT", + "ETag": "\u00220x8DA9F724DE7D1C0\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:50:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2535,32 +2121,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:45:52 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:50:50 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "bb1ffd33-3487-4368-b984-07d047bcd111", + "x-ms-meta-name": "51476e36-8cf8-416d-bf8b-25916df42b46", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "dcb4f691-b600-4926-922b-f81bfe21d5e4", + "x-ms-meta-version": "0a84439e-8a55-4b45-b30c-152bf4c097e6", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:26 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:25 GMT", + "Date": "Wed, 12 Oct 2022 12:05:52 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2568,12 +2154,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2581,7 +2167,7 @@ "Connection": "keep-alive", "Content-Length": "6645", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2630,7 +2216,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c63f7ef3-fc84-4bd9-a5ea-14062df63d31" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4fae7156-16e4-4625-931e-13184542dbeb" }, "file_batch_inference_node": { "type": "parallel", @@ -2644,7 +2230,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -2664,7 +2250,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2012af30-cd61-42cd-a29f-eed67e10075a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -2692,7 +2278,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ff4682da-25e1-4854-b90f-29ec1ccdc8e9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/abebd8d5-db53-43d4-9438-04aef2f6a043" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -2706,7 +2292,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -2731,7 +2317,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2012af30-cd61-42cd-a29f-eed67e10075a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -2745,7 +2331,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "tabular_batch_inference.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -2775,7 +2361,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58ee2fca-ef19-46ab-973e-9370fd7cef0a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/565ac135-8334-45bf-8dfd-62daf6f286ac", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -2799,22 +2385,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "10393", + "Content-Length": "10439", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:32 GMT", + "Date": "Wed, 12 Oct 2022 12:05:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-570744abd6acf0db86c3d6a2a4f7cb80-81597d64ae080771-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-765f5dac81346e56d7240fdce8b4e44d-ff51daffa2dc2451-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63ec731f-00d4-439f-b8ee-25fcc0177b2a", - "x-ms-ratelimit-remaining-subscription-writes": "1157", + "x-ms-correlation-request-id": "b873355e-6e83-4ac9-8d27-289d6c9c9b46", + "x-ms-ratelimit-remaining-subscription-writes": "1093", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234633Z:63ec731f-00d4-439f-b8ee-25fcc0177b2a", - "x-request-time": "5.311" + "x-ms-routing-request-id": "JAPANEAST:20221012T120600Z:b873355e-6e83-4ac9-8d27-289d6c9c9b46", + "x-request-time": "3.702" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2845,7 +2431,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -2853,7 +2440,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -2892,7 +2480,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c63f7ef3-fc84-4bd9-a5ea-14062df63d31" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4fae7156-16e4-4625-931e-13184542dbeb" }, "file_batch_inference_node": { "type": "parallel", @@ -2906,7 +2494,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -2926,7 +2514,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2012af30-cd61-42cd-a29f-eed67e10075a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -2954,7 +2542,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ff4682da-25e1-4854-b90f-29ec1ccdc8e9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/abebd8d5-db53-43d4-9438-04aef2f6a043" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -2968,7 +2556,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:1" @@ -2993,7 +2581,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2012af30-cd61-42cd-a29f-eed67e10075a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3fcb77cd-87db-4c7e-9550-c3bbb06f44c0", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -3007,7 +2595,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/738f0f3b-86a8-42f9-83ef-1009a17988e9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2dfb3f1-dd09-4e01-baeb-6fd024a01add/versions/1", "entry_script": "tabular_batch_inference.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -3037,7 +2625,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58ee2fca-ef19-46ab-973e-9370fd7cef0a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/565ac135-8334-45bf-8dfd-62daf6f286ac", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -3074,8 +2662,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:46:32.7002191\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:05:59.8689038\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json index e3f43be0775a2..328fc86160811 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:34 GMT", + "Date": "Wed, 12 Oct 2022 12:04:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e2e5272bd9409208bfae0a743afc7a02-446688813c8831d3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8802c5cc0a29a1a4e7d9d3463a1611a3-80953750fb88229d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5ed5ee2-fb09-41cc-98d4-f1a1d419ecf7", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "532cf9a6-085c-46f5-b7ae-8947d487d4cb", + "x-ms-ratelimit-remaining-subscription-reads": "11922", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234534Z:c5ed5ee2-fb09-41cc-98d4-f1a1d419ecf7", - "x-request-time": "0.252" + "x-ms-routing-request-id": "JAPANEAST:20221012T120438Z:532cf9a6-085c-46f5-b7ae-8947d487d4cb", + "x-request-time": "0.230" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,22 +52,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:44:17.418\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:35 GMT", + "Date": "Wed, 12 Oct 2022 12:04:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f523b8c5f61fcda133cd7f1f34c72bff-e3b440cd3b93cf3d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-760a42aa0d726fa0771114538bd3a4f9-71140026a871ba39-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19936b69-63da-4289-ae78-5dd937af64f8", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "44634c53-62f4-49fb-9dde-69df8c9976b5", + "x-ms-ratelimit-remaining-subscription-reads": "11921", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234535Z:19936b69-63da-4289-ae78-5dd937af64f8", - "x-request-time": "0.176" + "x-ms-routing-request-id": "JAPANEAST:20221012T120441Z:44634c53-62f4-49fb-9dde-69df8c9976b5", + "x-request-time": "0.258" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:35 GMT", + "Date": "Wed, 12 Oct 2022 12:04:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9ff358ce158bbd40cb27e57b0260fb3e-13c9ad76ebbb12c6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d665f6a739b7e385cc76f1e07ac3a692-7fbe6456e200f0b4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08425fc3-4cb2-47f4-aafc-ad527962ddf3", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "90b71d55-9f75-4bae-a7de-b7f8097bc88e", + "x-ms-ratelimit-remaining-subscription-writes": "1156", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234536Z:08425fc3-4cb2-47f4-aafc-ad527962ddf3", - "x-request-time": "0.098" + "x-ms-routing-request-id": "JAPANEAST:20221012T120442Z:90b71d55-9f75-4bae-a7de-b7f8097bc88e", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/tabular_run_with_model.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/tabular_run_with_model.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:36 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:42 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +190,9 @@ "Content-Length": "1102", "Content-MD5": "jO1FYErTQcHautv7oG0/KQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:45:35 GMT", - "ETag": "\u00220x8DAA27297C3C99F\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:30:28 GMT", + "Date": "Wed, 12 Oct 2022 12:04:41 GMT", + "ETag": "\u00220x8DA9F723EC4C5DE\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:50:25 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:30:28 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:50:25 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "c577b594-3497-4cd5-b811-dfe339626a6d", + "x-ms-meta-name": "db5e7941-8b47-4a43-b6ff-7c9d765449c5", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/src/tabular_run_with_model.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/tabular_run_with_model.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:36 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:42 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:35 GMT", + "Date": "Wed, 12 Oct 2022 12:04:42 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c577b594-3497-4cd5-b811-dfe339626a6d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db5e7941-8b47-4a43-b6ff-7c9d765449c5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -267,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:36 GMT", + "Date": "Wed, 12 Oct 2022 12:04:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b17a7db5e0dacac9aab5078cfd6e010c-06e0270ceb98223a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a6e996b7e2d436f9b48321cf2b117ebd-0550c8f3df304ba5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1826aa27-912b-4475-8eac-f3971837745c", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "6eea84c7-ae29-4b37-8684-9e433ed327ba", + "x-ms-ratelimit-remaining-subscription-writes": "1108", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234537Z:1826aa27-912b-4475-8eac-f3971837745c", - "x-request-time": "0.225" + "x-ms-routing-request-id": "JAPANEAST:20221012T120443Z:6eea84c7-ae29-4b37-8684-9e433ed327ba", + "x-request-time": "0.231" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c577b594-3497-4cd5-b811-dfe339626a6d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db5e7941-8b47-4a43-b6ff-7c9d765449c5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:30:28.7673439\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:50:27.0266351\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:45:36.9133771\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:04:42.9822748\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -328,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "416", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -340,24 +326,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Build-ID": "ca4", + "Build-ID": "cap", "Cache-Control": "no-cache", - "Content-Length": "1359", + "Content-Length": "1351", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:49 GMT", + "Date": "Wed, 12 Oct 2022 12:04:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-867212c7da61316551ddc45406760502-a7ee534038f0904f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-52dbd7fffb0e71f278a35f0f63d9a855-6f306ff0df2391c1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae000fe4-076e-4984-a085-155b74694e95", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "9e2bc06f-50fa-4543-9b85-3cac67394eb7", + "x-ms-ratelimit-remaining-subscription-writes": "1107", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234550Z:ae000fe4-076e-4984-a085-155b74694e95", - "x-request-time": "13.220" + "x-ms-routing-request-id": "JAPANEAST:20221012T120456Z:9e2bc06f-50fa-4543-9b85-3cac67394eb7", + "x-request-time": "12.560" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", @@ -375,11 +361,11 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-29T23:30:29.9190948\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:56:46.9554352\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:30:29.9190948\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-09-23T09:56:46.9554352\u002B00:00", + "lastModifiedBy": "Ying Chen", "lastModifiedByType": "User" } } @@ -393,7 +379,7 @@ "Connection": "keep-alive", "Content-Length": "1542", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -429,7 +415,7 @@ "logging_level": "DEBUG", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c577b594-3497-4cd5-b811-dfe339626a6d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db5e7941-8b47-4a43-b6ff-7c9d765449c5/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -450,26 +436,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2537", + "Content-Length": "2536", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:50 GMT", + "Date": "Wed, 12 Oct 2022 12:04:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-cbfef1b70ee239f984474ff1bcff7478-7cec571041ccfd71-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2c514a34bc9757231c01595e900d03b9-646dca2d2bd30800-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a65a2ec3-25c7-4bba-94f0-ced08c5be1ff", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "3d7348ba-f1cd-4e17-904b-2cf420b2dea8", + "x-ms-ratelimit-remaining-subscription-writes": "1106", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234551Z:a65a2ec3-25c7-4bba-94f0-ced08c5be1ff", - "x-request-time": "0.582" + "x-ms-routing-request-id": "JAPANEAST:20221012T120457Z:3d7348ba-f1cd-4e17-904b-2cf420b2dea8", + "x-request-time": "0.561" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/afd38eb3-b2c4-49db-b1ad-2dc05e6031c2", - "name": "afd38eb3-b2c4-49db-b1ad-2dc05e6031c2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53651e6f-94ce-4a84-a639-f24a49915b45", + "name": "53651e6f-94ce-4a84-a639-f24a49915b45", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -479,7 +465,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "afd38eb3-b2c4-49db-b1ad-2dc05e6031c2", + "version": "53651e6f-94ce-4a84-a639-f24a49915b45", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -502,7 +488,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c577b594-3497-4cd5-b811-dfe339626a6d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db5e7941-8b47-4a43-b6ff-7c9d765449c5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", "program_arguments": "--model ${{inputs.score_model}}", "entry_script": "tabular_run_with_model.py", @@ -523,11 +509,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:30:44.3197662\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:50:45.073385\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:30:44.9302457\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-09-26T03:50:45.6149135\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -539,32 +525,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:50 GMT", + "Date": "Wed, 12 Oct 2022 12:04:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b7cccf08f625a9c0b643973f86bd969c-862d8fc1b798de3e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a23b4a35975eb92abd003d4aa9cb6ce2-1aeaa80b216a9b27-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4225fd33-1ee5-446b-a500-4090f8339a7b", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "5c397878-f4ec-45a3-861c-056cc57377d5", + "x-ms-ratelimit-remaining-subscription-reads": "11920", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234551Z:4225fd33-1ee5-446b-a500-4090f8339a7b", - "x-request-time": "0.099" + "x-ms-routing-request-id": "JAPANEAST:20221012T120458Z:5c397878-f4ec-45a3-861c-056cc57377d5", + "x-request-time": "0.156" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -579,17 +561,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -603,29 +585,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", + "Date": "Wed, 12 Oct 2022 12:04:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-1cff6d04caf7d89f17db8362eeb29a3d-b7478fce806c759a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1336814d1cb38db771b56b9592b6df35-9259f950a3103dae-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a7091b1-8bdc-4afc-8868-d4d4a7ce2c54", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "dffc7f26-9440-4fe5-a9df-c7cb94ba7336", + "x-ms-ratelimit-remaining-subscription-writes": "1155", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234551Z:1a7091b1-8bdc-4afc-8868-d4d4a7ce2c54", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T120458Z:dffc7f26-9440-4fe5-a9df-c7cb94ba7336", + "x-request-time": "0.551" }, "ResponseBody": { "secretsType": "AccountKey", @@ -633,127 +613,68 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:51 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "152", "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:45:51 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "cGF0aHM6DQogIC0gZmlsZTogLi9pcmlzLmNzdg0KdHJhbnNmb3JtYXRpb25zOg0KICAtIHJlYWRfZGVsaW1pdGVkOg0KICAgICAgZGVsaW1pdGVyOiAiLCINCiAgICAgIGVuY29kaW5nOiBhc2NpaQ0KICAgICAgaGVhZGVyOiBhbGxfZmlsZXNfc2FtZV9oZWFkZXJzDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "ETag": "\u00220x8DAA274BE5E2560\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:45:52 GMT", + "Date": "Wed, 12 Oct 2022 12:04:58 GMT", + "ETag": "\u00220x8DA9F724C7453D2\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:50:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "DkIzWs5Nxl4=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/iris-mltable/iris.csv", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "84107", - "Content-MD5": "6OYiRjb74HJ47HYxjw\u002BoYg==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:45:51 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "NS4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDMuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuNzY0MDUyMzQ1OTY3NjY0MDI2ZSswMCw0LjAwMTU3MjA4MzY3MjIzMjkzOGUtMDEsOS43ODczNzk4NDEwNTczOTIwMDVlLTAxLDIuMjQwODkzMTk5MjAxNDU3Nzk3ZSswMCwxLjg2NzU1Nzk5MDE0OTk2NzQ4NGUrMDAsLTkuNzcyNzc4Nzk4NzY0MTEwMTUzZS0wMSw5LjUwMDg4NDE3NTI1NTg5MzY4MmUtMDEsLTEuNTEzNTcyMDgyOTc2OTc4ODcyZS0wMSwtMS4wMzIxODg1MTc5MzU1Nzg0NDhlLTAxLDQuMTA1OTg1MDE5MzgzNzIzMjg5ZS0wMSwxLjQ0MDQzNTcxMTYwODc3OTg2N2UtMDEsMS40NTQyNzM1MDY5NjI5NzUwODJlKzAwLDcuNjEwMzc3MjUxNDY5OTM0MTU3ZS0wMSwxLjIxNjc1MDE2NDkyODI4NDEzOWUtMDEsNC40Mzg2MzIzMjc0NTQyNTY2MjFlLTAxLDMuMzM2NzQzMjczNzQyNjY4MzI1ZS0wMSwxLjQ5NDA3OTA3MzE1NzYwNjEzMGUrMDAsLTIuMDUxNTgyNjM3NjU4MDA4NzQ1ZS0wMSwzLjEzMDY3NzAxNjUwOTAxMzY0NGUtMDEsLTguNTQwOTU3MzkzMDE3MjQ3NzY3ZS0wMSwtMi41NTI5ODk4MTU4MzQwNzg2OTFlKzAwLDYuNTM2MTg1OTU0NDAzNjA2MDU4ZS0wMSw4LjY0NDM2MTk4ODU5NTA1NzMzM2UtMDEsLTcuNDIxNjUwMjA0MDY0NDE5NDQzZS0wMSwyLjI2OTc1NDYyMzk4NzYwNzYzM2UrMDAsLTEuNDU0MzY1Njc0NTk4NzY0NzU3ZSswMCw0LjU3NTg1MTczMDE0NDYwNjgwNWUtMDIsLTEuODcxODM4NTAwMjU4MzM1OTgwZS0wMSwxLjUzMjc3OTIxNDM1ODQ1NzU0MmUrMDAsMS40NjkzNTg3Njk5MDAyODUwMjJlKzAwLDEuNTQ5NDc0MjU2OTY5MTYzMDIyZS0wMSwzLjc4MTYyNTE5NjAyMTczNTYzNWUtMDEsLTguODc3ODU3NDc2MzAxMTI3NTM3ZS0wMSwtMS45ODA3OTY0NjgyMjM5MjY5NjVlKzAwLC0zLjQ3OTEyMTQ5MzI2MTUyNjA4OGUtMDEsMS41NjM0ODk2OTEwMzk4MDA1MTFlLTAxLDEuMjMwMjkwNjgwNzI3NzIwNzQyZSswMCwxLjIwMjM3OTg0ODc4NDQxMTI4N2UrMDAsLTMuODczMjY4MTc0MDc5NTIyNzMwZS0wMSwtMy4wMjMwMjc1MDU3NTMzNTU2NTllLTAxDQo0LjkwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTEuMDQ4NTUyOTY1MDY3MDkyNjEzZSswMCwtMS40MjAwMTc5MzcxNzg5NzUxNzZlKzAwLC0xLjcwNjI3MDE5MDYyNTAxMjYxN2UrMDAsMS45NTA3NzUzOTUyMzE3ODk2NjZlKzAwLC01LjA5NjUyMTgxNzUxNjUzNDk5MWUtMDEsLTQuMzgwNzQzMDE2MTExODYzNzg2ZS0wMSwtMS4yNTI3OTUzNjAwNDk5MjYxOTllKzAwLDcuNzc0OTAzNTU4MzE5MTAwNjI3ZS0wMSwtMS42MTM4OTc4NDc1NTc5NTE1MTVlKzAwLC0yLjEyNzQwMjgwMjEzOTY4NzA3N2UtMDEsLTguOTU0NjY1NjExOTM2NzU2MjUzZS0wMSwzLjg2OTAyNDk3ODU5MjYyMDA2OGUtMDEsLTUuMTA4MDUxMzc1Njg4NzMwMjQ1ZS0wMSwtMS4xODA2MzIxODQxMjI0MTIxMDllKzAwLC0yLjgxODIyMjgzMzg2NTQ4NjgxOGUtMDIsNC4yODMzMTg3MDUzMDQxNzY1NzdlLTAxLDYuNjUxNzIyMjM4MzE2Nzg4NzE2ZS0wMiwzLjAyNDcxODk3NzM5NzgxMzkyNGUtMDEsLTYuMzQzMjIwOTM2ODA5NjM1OTQ2ZS0wMSwtMy42Mjc0MTE2NTk4NzEzODEyNTVlLTAxLC02LjcyNDYwNDQ3Nzc1OTUxMDQyNGUtMDEsLTMuNTk1NTMxNjE1NDA1NDEyODg0ZS0wMSwtOC4xMzE0NjI4MjA0NDQ1NDA0OTZlLTAxLC0xLjcyNjI4MjYwMjMzMTY3Njg1MmUrMDAsMS43NzQyNjE0MjI1Mzc1MjgzMzJlLTAxLC00LjAxNzgwOTM2MjA4MjYxODg1MWUtMDEsLTEuNjMwMTk4MzQ2OTY2MDQ0NTk4ZSswMCw0LjYyNzgyMjU1NTI1Nzc0MTc3N2UtMDEsLTkuMDcyOTgzNjQzODMyNDIxODQxZS0wMSw1LjE5NDUzOTU3OTYxMzg5NTE3NWUtMDIsNy4yOTA5MDU2MjE3NzUzNjg3MTdlLTAxLDEuMjg5ODI5MTA3NTc0MTA2NjgxZS0wMSwxLjEzOTQwMDY4NDU0MzMwMDY3OWUrMDAsLTEuMjM0ODI1ODIwMzUzNjUyNjI2ZSswMCw0LjAyMzQxNjQxMTc3NTQ5MDAzMWUtMDEsLTYuODQ4MTAwOTA5NDAzMTMxOTg2ZS0wMSwtOC43MDc5NzE0OTE4MTg4MTc4MDBlLTAxLC01Ljc4ODQ5NjY0NzY0NDE1NDYxM2UtMDEsLTMuMTE1NTI1MzIxMjczNzI2NjExZS0wMSw1LjYxNjUzNDIyMjk3NDU0MzgwMGUtMDINCjQuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwzLjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtMS4xNjUxNDk4NDA3ODMzNTY0ODNlKzAwLDkuMDA4MjY0ODY5NTQxODcxMDAxZS0wMSw0LjY1NjYyNDM5NzMwNDU5ODQyOGUtMDEsLTEuNTM2MjQzNjg2Mjc3MjIzNzQxZSswMCwxLjQ4ODI1MjE5Mzc5NTU5OTY5OGUrMDAsMS44OTU4ODkxNzYwMzA1ODMxNTZlKzAwLDEuMTc4Nzc5NTcxMTU5NjUwNzA4ZSswMCwtMS43OTkyNDgzNTgxMjM1MDkxMzllLTAxLC0xLjA3MDc1MjYyMTUxMDU0MjUxM2UrMDAsMS4wNTQ0NTE3MjY5MzExMzY2NDZlKzAwLC00LjAzMTc2OTQ2OTczMTc5NjI4NWUtMDEsMS4yMjI0NDUwNzAzODI0Mjc0NDZlKzAwLDIuMDgyNzQ5NzgwNzY4NjAyOTU0ZS0wMSw5Ljc2NjM5MDM2NDgzNzEyNzUyNWUtMDEsMy41NjM2NjM5NzE3NDQwMTg4MzJlLTAxLDcuMDY1NzMxNjgxOTE5NDgxNTMzZS0wMSwxLjA1MDAwMjA3MjA4MjA0Nzg0OWUtMDIsMS43ODU4NzA0OTM5MDU4MzUxODhlKzAwLDEuMjY5MTIwOTI3MDM2MTk5MTY1ZS0wMSw0LjAxOTg5MzYzNDQ0NzAxNjUyOGUtMDEsMS44ODMxNTA2OTcwNTYyNTQzNzVlKzAwLC0xLjM0Nzc1OTA2MTE0MjQ0NjM2OGUrMDAsLTEuMjcwNDg0OTk4NDg1NzMzNTk2ZSswMCw5LjY5Mzk2NzA4MTU4MDExMTU1NmUtMDEsLTEuMTczMTIzNDA1MTE0MTU5OTEyZSswMCwxLjk0MzYyMTE4NTY0OTI5MjY0OWUrMDAsLTQuMTM2MTg5ODA3NTk3NDczNDU2ZS0wMSwtNy40NzQ1NDgxMTQ0MDc1Nzc2MDRlLTAxLDEuOTIyOTQyMDI2NDgwMzg0NzAzZSswMCwxLjQ4MDUxNDc5MTQzNDQyNDMyN2UrMDAsMS44Njc1NTg5NjA0MjY1Njk4ODFlKzAwLDkuMDYwNDQ2NTgyNzUzODUyNzI5ZS0wMSwtOC42MTIyNTY4NTA1NDcwMjUzODllLTAxLDEuOTEwMDY0OTUzMDk5MDMzNjgwZSswMCwtMi42ODAwMzM3MDk1MTM4MDM4MTllLTAxLDguMDI0NTYzOTU3OTYzOTUxNjEwZS0wMSw5LjQ3MjUxOTY3NzczNzQ3OTgyNmUtMDEsLTEuNTUwMTAwOTMwOTA4MzQxODkwZS0wMSw2LjE0MDc5MzcwMzQ2MDgwMjg4OGUtMDEsOS4yMjIwNjY3MTU2NjUyNjgwMzNlLTAxDQo0LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4xMDAwMDAwMDAwMDAwMDAwODllKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsMy43NjQyNTUzMTE1NTYyOTQzMzdlLTAxLC0xLjA5OTQwMDc5MDU4NDE5NDQ4N2UrMDAsMi45ODIzODE3NDIwNjA1NTk3MjZlLTAxLDEuMzI2Mzg1ODk2Njg3MDMwMzMwZSswMCwtNi45NDU2Nzg1OTczMTM2NTQ3NzhlLTAxLC0xLjQ5NjM0NTQwMzI3NjcwNzYyMGUtMDEsLTQuMzUxNTM1NTE3MjE2Mzc0NDM4ZS0wMSwxLjg0OTI2MzcyODQ3OTM0MTg0MGUrMDAsNi43MjI5NDc1NzAxMjQzNTQ2MjJlLTAxLDQuMDc0NjE4MzYyNDExMTA0MzExZS0wMSwtNy42OTkxNjA3NDQ0NTMxNjQwMDdlLTAxLDUuMzkyNDkxOTEyOTE4MTcyNTM2ZS0wMSwtNi43NDMzMjY2MDY1NzM3NjA3MDZlLTAxLDMuMTgzMDU1ODI3NDM1MTE4MjUxZS0wMiwtNi4zNTg0NjA3ODM3ODg4MDk2MzRlLTAxLDYuNzY0MzMyOTQ5NDY0OTk3MzAyZS0wMSw1Ljc2NTkwODE2NjE0OTQwOTM3NWUtMDEsLTIuMDgyOTg3NTU1Nzc5OTQ4NzYzZS0wMSwzLjk2MDA2NzEyNjYxNjQ1Mjc3MWUtMDEsLTEuMDkzMDYxNTA4NzMwNTA1NzgyZSswMCwtMS40OTEyNTc1OTI3MDU2MDU1MzllKzAwLDQuMzkzOTE3MDEyNjQ1MzY5MTU4ZS0wMSwxLjY2NjczNDk1MzcyNTI5MDQwMmUtMDEsNi4zNTAzMTQzNjg5MjEwNjM5MzRlLTAxLDIuMzgzMTQ0Nzc0ODYzOTQyMDUwZSswMCw5LjQ0NDc5NDg2OTkwNDEzODQxMmUtMDEsLTkuMTI4MjIyMjU0NDQxNTg1ODU5ZS0wMSwxLjExNzAxNjI4ODA5NTg1Mjk2MWUrMDAsLTEuMzE1OTA3NDEwNTExNTIxMTU4ZSswMCwtNC42MTU4NDYwNDgxNDcwODk3NjRlLTAxLC02LjgyNDE2MDUzMjQ2MzEyMzU0MWUtMDIsMS43MTMzNDI3MjE2NDkzNjY2MjllKzAwLC03LjQ0NzU0ODIyMDQ4NDM5OTAxN2UtMDEsLTguMjY0Mzg1Mzg2NTkwMTQzOTg5ZS0wMSwtOS44NDUyNTI0NDI1NDMyMzAwMDllLTAyLC02LjYzNDc4Mjg2MzYyMTA3MzcyM2UtMDEsMS4xMjY2MzU5MjIxMDY1MDY5ODJlKzAwLC0xLjA3OTkzMTUwODM2MzQyMzMzMWUrMDAsLTEuMTQ3NDY4NjUyNDExMTAyNDA4ZSswMCwtNC4zNzgyMDA0NDc0NDQzNDAzMzdlLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy42MDAwMDAwMDAwMDAwMDAwODllKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTQuOTgwMzI0NTA2OTIzMDQ4OTU1ZS0wMSwxLjkyOTUzMjA1MzgxNjk4NTc4MmUrMDAsOS40OTQyMDgwNjkyNTc2MDgwNzRlLTAxLDguNzU1MTI0MTM4NTE5MDg5NDk0ZS0wMiwtMS4yMjU0MzU1MTg4MzAxNjc5OTFlKzAwLDguNDQzNjI5NzY0MDE1NDcxMTYyZS0wMSwtMS4wMDAyMTUzNDczODk1NjQ3NDZlKzAwLC0xLjU0NDc3MTA5Njc3NzYxMTU5NmUrMDAsMS4xODgwMjk3OTIzNTIzMDE3NzJlKzAwLDMuMTY5NDI2MTE5MjQ4NDk2MjY1ZS0wMSw5LjIwODU4ODIzNzgwODE4OTU4MGUtMDEsMy4xODcyNzY1Mjk0MzAyMTE4OTFlLTAxLDguNTY4MzA2MTE5MDI2OTExNjM4ZS0wMSwtNi41MTAyNTU5MzMwMDE0Njg2NTNlLTAxLC0xLjAzNDI0Mjg0MTc4NDQ2NDY4NGUrMDAsNi44MTU5NDUxODI4MTYyNjk4MjFlLTAxLC04LjAzNDA5NjY0MTczODQxMDc2MGUtMDEsLTYuODk1NDk3Nzc3NTAyMDA1NDMyZS0wMSwtNC41NTUzMjUwMzUxNzM0MzE0NThlLTAxLDEuNzQ3OTE1OTAyNTA1NjcyODU4ZS0wMiwtMy41Mzk5MzkxMTI1MzQ4Mzk1MDVlLTAxLC0xLjM3NDk1MTI5MzQxODAxODgwNWUrMDAsLTYuNDM2MTg0MDI4MzI4OTA1MTI3ZS0wMSwtMi4yMjM0MDMxNTIyMjQ0MjY2MzhlKzAwLDYuMjUyMzE0NTEwMjcxODc0NjgxZS0wMSwtMS42MDIwNTc2NTU2MDY3NDc2MjFlKzAwLC0xLjEwNDM4MzMzOTQyODQ1MDU3MmUrMDAsNS4yMTY1MDc5MjYwOTc0NDA0OTBlLTAyLC03LjM5NTYyOTk2MzkxMzEzMjg3NmUtMDEsMS41NDMwMTQ1OTU0MDY3MzU4MDFlKzAwLC0xLjI5Mjg1NjkwOTcyMzQ0ODU3N2UrMDAsMi42NzA1MDg2OTM0OTE4MjkyODhlLTAxLC0zLjkyODI4MTgyMjc0OTU2MDI4MWUtMDIsLTEuMTY4MDkzNDk3NzQxMTk3NDE3ZSswMCw1LjIzMjc2NjYwNTMxNzUzNzAxMmUtMDEsLTEuNzE1NDYzMzEyMjIyNDgxMDUyZS0wMSw3LjcxNzkwNTUxMjEzNjY3MzUyOWUtMDEsOC4yMzUwNDE1Mzk2MzczMTQ0NDVlLTAxLDIuMTYzMjM1OTQ5MjgwNjg5ODUyZSswMCwxLjMzNjUyNzk0OTQzNjM5MTk3MWUrMDANCjUuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS42OTk5OTk5OTk5OTk5OTk5NTZlKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwtMy42OTE4MTgzNzk0MjQ0MzU4MDNlLTAxLC0yLjM5Mzc5MTc3NTc1OTI2Mzg4NWUtMDEsMS4wOTk2NTk1OTU4ODcxMTMxNTBlKzAwLDYuNTUyNjM3MzA3MjI1OTc4MDM2ZS0wMSw2LjQwMTMxNTI2MDk3NTkyMDUxOGUtMDEsLTEuNjE2OTU2MDQ0MzEwODM0Mzk1ZSswMCwtMi40MzI2MTI0Mzk4OTM1NjM1NThlLTAyLC03LjM4MDMwOTA5MjA1Njg4NzAxMGUtMDEsMi43OTkyNDU5OTA0MzIzODI0MjVlLTAxLC05LjgxNTAzODk2NDI5NTc5NDE0NGUtMDIsOS4xMDE3ODkwODA5MjU5MTk0MjhlLTAxLDMuMTcyMTgyMTUxOTEzMDIwNTU0ZS0wMSw3Ljg2MzI3OTYyMTA4OTc2MTUyOWUtMDEsLTQuNjY0MTkwOTY3MzU5NDMwNjE3ZS0wMSwtOS40NDQ0NjI1NTkxODI1MDM3NjllLTAxLC00LjEwMDQ5NjkzMjAyNTQ4NDcwOWUtMDEsLTEuNzAyMDQxMzg2MTQ0MDU5NDA3ZS0wMiwzLjc5MTUxNzM1NTU1MDgxODAzNmUtMDEsMi4yNTkzMDg5NTA2OTA4NTIxMzZlKzAwLC00LjIyNTcxNTE2NjA2NDI2OTMwN2UtMDIsLTkuNTU5NDUwMDA0OTI3NzY5NzUxZS0wMSwtMy40NTk4MTc3NTY5OTM4NjQyOTFlLTAxLC00LjYzNTk1OTc0NjQ2MDk0MTk5OWUtMDEsNC44MTQ4MTQ3Mzc3MzQ2MjE3NjNlLTAxLC0xLjU0MDc5NzAxNDQ0NDYyNDgwMmUrMDAsNi4zMjYxOTk0MjAwMzMxNzExNTBlLTAyLDEuNTY1MDY1Mzc5NjUzNzU1ODYyZS0wMSwyLjMyMTgxMDM2MjAwMjc1Nzc1NWUtMDEsLTUuOTczMTYwNjg5NjUzNjI3MTIwZS0wMSwtMi4zNzkyMTcyOTczNjAwNzAwMzhlLTAxLC0xLjQyNDA2MDkwODk4MjUzMTU3MGUrMDAsLTQuOTMzMTk4ODMzNjIxOTQwNjcxZS0wMSwtNS40Mjg2MTQ3NjAxNjcxNzc0NzhlLTAxLDQuMTYwNTAwNDYyNjE0MjU0OTkxZS0wMSwtMS4xNTYxODI0MzE4MjE5MTI3MTVlKzAwLDcuODExOTgxMDE3MDk5OTMzNzU1ZS0wMSwxLjQ5NDQ4NDU0NDQ5MTM2ODgwNWUrMDAsLTIuMDY5OTg1MDI1MDEzNTMyNTQyZSswMCw0LjI2MjU4NzMwNzc4MTAwOTQ3MWUtMDEsNi43NjkwODAzNTAzMDI0NTU0NzNlLTAxDQo0LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsLTYuMzc0MzcwMjU1NTIyMjkwMzA3ZS0wMSwtMy45NzI3MTgxNDMyODc5NzY1NjdlLTAxLC0xLjMyODgwNTc3NTg2OTU1NjIyN2UtMDEsLTIuOTc3OTA4Nzk0MDE3MjgzMjU2ZS0wMSwtMy4wOTAxMjk2OTA0NzEyMjIyMTJlLTAxLC0xLjY3NjAwMzgwNjMyOTk3NjY5N2UrMDAsMS4xNTIzMzE1NjQ3ODMxMjAwNDRlKzAwLDEuMDc5NjE4NTkyMDM2ODIxMDkwZSswMCwtOC4xMzM2NDI1OTIwNDIwMjg1NTJlLTAxLC0xLjQ2NjQyNDMyNzgwMjUxMzk3MmUrMDAsNS4yMTA2NDg3NjQ1Mjc1ODU2MzBlLTAxLC01Ljc1Nzg3OTY5ODEzMDY2MTI1MGUtMDEsMS40MTk1MzE2MzMyMDc3OTY3MzllLTAxLC0zLjE5MzI4NDE3MTQ1MDk1MTg5MmUtMDEsNi45MTUzODc1MTA3MDE4NjU4NTllLTAxLDYuOTQ3NDkxNDM2NTYwMDU5Mjk3ZS0wMSwtNy4yNTU5NzM3ODQ2MzU4NDI5NzFlLTAxLC0xLjM4MzM2Mzk1NTM5NTA1NTQxMWUrMDAsLTEuNTgyOTM4Mzk3MzM1MDgxOTA0ZSswMCw2LjEwMzc5Mzc5MTA3MjA1MTg4OWUtMDEsLTEuMTg4ODU5MjU3Nzg0MDI4OTAwZSswMCwtNS4wNjgxNjM1NDI5ODY4NzU0MzZlLTAxLC01Ljk2MzE0MDM4NDUwNTA4MTIxNWUtMDEsLTUuMjU2NzI5NjI2OTU0NjI4NzUzZS0wMiwtMS45MzYyNzk4MDU4NDY1MDY5NDFlKzAwLDEuODg3Nzg1OTY3OTM4Mjg1NTE0ZS0wMSw1LjIzODkxMDIzODM0MjA1NjA0N2UtMDEsOC44NDIyMDg3MDQ0NjYxNDA5ODllLTAyLC0zLjEwODg2MTcxNjk4NDcxNzEzOGUtMDEsOS43NDAwMTY2MjY4NzgzNDA4NTVlLTAyLDMuOTkwNDYzNDU2NDAxMzAxOTU2ZS0wMSwtMi43NzI1OTI3NTY0MjY2NTAxNTFlKzAwLDEuOTU1OTEyMzA4MjUwNjk0MTc2ZSswMCwzLjkwMDkzMzIyNjg3OTI2NDU4MWUtMDEsLTYuNTI0MDg1ODIzODcwMjAwNDE4ZS0wMSwtMy45MDk1MzM3NTE4NzYwMTA5MzJlLTAxLDQuOTM3NDE3NzczNDkxODg0NDg3ZS0wMSwtMS4xNjEwMzkzOTAzNDM2NjUyNjdlLTAxLC0yLjAzMDY4NDQ2Nzc4MTQ5NDM2MmUrMDAsMi4wNjQ0OTI4NjEzNTkzMTk0MjBlKzAwDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTEuMTA1NDA2NTcyMzI0NzI2MTExZS0wMSwxLjAyMDE3MjcxMTcxNTc5OTcwN2UrMDAsLTYuOTIwNDk4NDc3ODQzOTExNTg5ZS0wMSwxLjUzNjM3NzA1NDI0NTc5NzczNWUrMDAsMi44NjM0MzY4ODg5MjI3OTU2ODdlLTAxLDYuMDg4NDM4MzQ0NzU0NTA3NjI1ZS0wMSwtMS4wNDUyNTMzNjYxNDY5NTQ3NDNlKzAwLDEuMjExMTQ1Mjg5NjgyNzAwODU0ZSswMCw2Ljg5ODE4MTY0NTM0Nzg4MzkxN2UtMDEsMS4zMDE4NDYyMjk1NjQ5OTg0MDNlKzAwLC02LjI4MDg3NTU5NjQxNTc4OTE4NmUtMDEsLTQuODEwMjcxMTg0NjA3ODc3MTcxZS0wMSwyLjMwMzkxNjY5NzY4Mzk0MTgwNmUrMDAsLTEuMDYwMDE1ODIyNzIxNTQ3MjYzZSswMCwtMS4zNTk0OTcwMDY3ODMyMDgyMjhlLTAxLDEuMTM2ODkxMzYyNjAyNjk1Mjk5ZSswMCw5Ljc3MjQ5Njc3MTQ4NTU2MDExOWUtMDIsNS44Mjk1MzY3OTc1MzI5MzU5NjZlLTAxLC0zLjk5NDQ5MDI5MjYyODc1MTc3MWUtMDEsMy43MDA1NTg4Nzg0NzUxODc0OTZlLTAxLC0xLjMwNjUyNjg1MTczNTMxNjU3NGUrMDAsMS42NTgxMzA2Nzk2MTgxODgwNTNlKzAwLC0xLjE4MTY0MDQ1MTI4NTY5NzYxM2UtMDEsLTYuODAxNzgyMDM5OTY4NTAzNjEzZS0wMSw2LjY2MzgzMDgyMDMxOTE0MzIwMGUtMDEsLTQuNjA3MTk3ODczODg1NTMyOTI0ZS0wMSwtMS4zMzQyNTg0NzE0MDI3NTM0NDNlKzAwLC0xLjM0NjcxNzUwNTc5NzU1NTMzNmUrMDAsNi45Mzc3MzE1MjY5MDEzMjUxMDhlLTAxLC0xLjU5NTczNDM4MTQ2MjY2ODk5NGUtMDEsLTEuMzM3MDE1NTk2Njg0MzkxNjI3ZS0wMSwxLjA3Nzc0MzgwNTk3NjI2MjczNmUrMDAsLTEuMTI2ODI1ODA4NzU2NzQzNTQxZSswMCwtNy4zMDY3Nzc1Mjg2NDgyNDgzNjVlLTAxLC0zLjg0ODc5ODA5MTgxMjc1NDU2M2UtMDEsOS40MzUxNTg5MzE3MDc0MDA1NTRlLTAyLC00LjIxNzE0NTEyOTA1Nzg5MzQ2MGUtMDIsLTIuODY4ODcxOTIzODk5MDc2MTkzZS0wMSwtNi4xNjI2NDAyMDk1NjQ3NDAzNDZlLTAyLC0xLjA3MzA1Mjc2MjkxMTc0Njg2NmUtMDENCjQuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwyLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtNy4xOTYwNDM4ODU1MTc5Mjg3MjllLTAxLC04LjEyOTkyOTg4NTU0MDc3MzExNmUtMDEsMi43NDUxNjM1NzcyMzkzOTUwODFlLTAxLC04LjkwOTE1MDgyOTk1NTI3OTA3MmUtMDEsLTEuMTU3MzU1MjU5MTkwODUzNTgwZSswMCwtMy4xMjI5MjI1MTEyNTY5MzMwOThlLTAxLC0xLjU3NjY3MDE2MTYzODE1ODk4NWUtMDEsMi4yNTY3MjM0OTcyOTgyMDkzMTNlKzAwLC03LjA0NzAwMjc1ODU2MjMzNzM3N2UtMDEsOS40MzI2MDcyNDk2OTQ5NDc1NzFlLTAxLDcuNDcxODgzMzQyMDQ2MzE4MjEwZS0wMSwtMS4xODg5NDQ5NTUyMDM3MzYxMDllKzAwLDcuNzMyNTI5Nzc0MDI1OTk2ODM4ZS0wMSwtMS4xODM4ODA2NDAxOTMzMTc3MzVlKzAwLC0yLjY1OTE3MjIzNzk5Njc0MDg1MWUrMDAsNi4wNjMxOTUyNDM1OTM4MDc0NjBlLTAxLC0xLjc1NTg5MDU4MzQzNzcxOTQyMWUrMDAsNC41MDkzNDQ2MTgwNTkxNDg0MzVlLTAxLC02Ljg0MDEwODk3NzM3MjE2NTcyMmUtMDEsMS42NTk1NTA3OTYxODk4NzIxMTNlKzAwLDEuMDY4NTA5Mzk5MzE2MDA5MDc5ZSswMCwtNC41MzM4NTgwMzg1MTM4NzY1ODdlLTAxLC02Ljg3ODM3NjExMDI4NjgyMzQ5N2UtMDEsLTEuMjE0MDc3NDAzMDk0MTIwNjAwZSswMCwtNC40MDkyMjYzMjI5MjU5MTM3NjZlLTAxLC0yLjgwMzU1NDk1MTg0NTA5MDg0OGUtMDEsLTMuNjQ2OTM1NDQzOTE2ODUzODcwZS0wMSwxLjU2NzAzODU1MjcyMzYzOTY3N2UtMDEsNS43ODUyMTQ5NzcyODg3ODM5NzdlLTAxLDMuNDk2NTQ0NTY5OTMxNzM5ODk5ZS0wMSwtNy42NDE0MzkyMzkwNjQ0MzAzNDRlLTAxLC0xLjQzNzc5MTQ3MzgwMTU3ODQ1N2UrMDAsMS4zNjQ1MzE4NDgxMDI0NzEzMDFlKzAwLC02Ljg5NDQ5MTg0NTQ5OTM3NjQzN2UtMDEsLTYuNTIyOTM1OTk5MzUwMTkxMTk0ZS0wMSwtNS4yMTE4OTMxMjMwMTExMDg3NDJlLTAxLC0xLjg0MzA2OTU1MDE1NjY0ODUyOGUrMDAsLTQuNzc5NzQwMDQwNDA0ODY2Nzc0ZS0wMSwtNC43OTY1NTgxNDAwNzk0NzY1NjJlLTAxLDYuMjAzNTgyOTgzNDM1MTI1MjY0ZS0wMQ0KNC45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMTAwMDAwMDAwMDAwMDAwMDg5ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwNTZlLTAxLDYuOTg0NTcxNDkxMDczMzYwMjgzZS0wMSwzLjc3MDg4OTA4NjI2OTM0MDEyMWUtMDMsOS4zMTg0ODM3NDExNDMwMzY1NjllLTAxLDMuMzk5NjQ5ODM4MDEyNjE5OTk2ZS0wMSwtMS41NjgyMTExNjAyNTU0NzY4NTVlLTAyLDEuNjA5MjgxNjgyOTgyMjI5ODQ0ZS0wMSwtMS45MDY1MzQ5MzU4MTM5OTM1MjVlLTAxLC0zLjk0ODQ5NTE0MDMzNDUwMzEwNmUtMDEsLTIuNjc3MzM1MzY4OTM5NjY0NTA2ZS0wMSwtMS4xMjgwMTEzMzE0NzAwMDY4NzNlKzAwLDIuODA0NDE3MDUzMTYyOTU5NzUwZS0wMSwtOS45MzEyMzYxMDkyOTU4MDY4MDJlLTAxLDguNDE2MzEyNjQwNzM2MzY0MjAzZS0wMSwtMi40OTQ1ODU4MDE2MDk0ODg1MDdlLTAxLDQuOTQ5NDk4MTY1MDA5MDczODU4ZS0wMiw0LjkzODM2Nzc2MjgwOTU2MzQ2NmUtMDEsNi40MzMxNDQ2NTA2MjkyNzg4NzFlLTAxLC0xLjU3MDYyMzQwODYzMzQ1MjczM2UrMDAsLTIuMDY5MDM2NzYxNjM5NzE3MzM3ZS0wMSw4LjgwMTc4OTEyMDgwNzgyMjQ5N2UtMDEsLTEuNjk4MTA1ODE5NDMyMjU0NDcxZSswMCwzLjg3MjgwNDc1Mzk1MDYzMzgzOGUtMDEsLTIuMjU1NTY0MjI5NDAyMTg5MzY5ZSswMCwtMS4wMjI1MDY4NDM2MzU2MDM1MTNlKzAwLDMuODYzMDU1MTg0MDE4ODA5ODczZS0wMiwtMS42NTY3MTUxMDIzMjE5NTM3MzZlKzAwLC05Ljg1NTEwNzM3Njg0MTUwNjUwNmUtMDEsLTEuNDcxODM1MDA3NDYzNTg2ODY0ZSswMCwxLjY0ODEzNDkzMjIwNzU1OTU3OGUrMDAsMS42NDIyNzc1NTQ4NzMzMzk1NDBlLTAxLDUuNjcyOTAyNzc4NTI2NjkzODkwZS0wMSwtMi4yMjY3NTEwMDUxNTE1NDQ4OTNlLTAxLC0zLjUzNDMxNzQ4NzU3MTk5MDcxMmUtMDEsLTEuNjE2NDc0MTg4NjUxMDMyNTQwZSswMCwtMi45MTgzNzM2Mjc0Nzg2MjgxNjNlLTAxLC03LjYxNDkyMjExODExNjIzMjk4NWUtMDEsOC41NzkyMzkyNDI5MjMzNjMyNjJlLTAxLDEuMTQxMTAxODY2NjU3NTczNDA1ZSswMCwxLjQ2NjU3ODcxNTU3NDE3NzYyN2UrMDAsOC41MjU1MTkzOTQ2MTIzMTk3NzllLTAxDQo1LjQwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTUuOTg2NTM5MzY5MjI5ODYwNzQxZS0wMSwtMS4xMTU4OTY5ODU5NjAzOTQ0MzllKzAwLDcuNjY2NjMxODE2NDUwODYwNjcwZS0wMSwzLjU2MjkyODE3NDcyMjg4OTE0MWUtMDEsLTEuNzY4NTM4NDUwNjc3MDMwNzQ5ZSswMCwzLjU1NDgxNzkyNzQzNzY5MDY1MGUtMDEsOC4xNDUxOTgyMjQ4Nzg2NjM2MjllLTAxLDUuODkyNTU4OTE4MTYyOTk2MTUxZS0wMiwtMS44NTA1MzY3MTAwOTM0MTUzMDVlLTAxLC04LjA3NjQ4NDg3NjE2MzU1NjU5MmUtMDEsLTEuNDQ2NTM0Njk5NTYzMzg3ODcxZSswMCw4LjAwMjk3OTQ5MzQwMDI3NTE0NmUtMDEsLTMuMDkxMTQ0NDQ3NzE3MDg3OTYyZS0wMSwtMi4zMzQ2NjY2MTU0MzY5MjcyMTdlLTAxLDEuNzMyNzIxMTg2OTE5MTMzMjM4ZSswMCw2Ljg0NTAxMTA2ODU5MTkwNDExM2UtMDEsMy43MDgyNTAwMTI4MTEwMjA3MzVlLTAxLDEuNDIwNjE4MDUxODcyMzU2NTY5ZS0wMSwxLjUxOTk5NDg2MDc2NTc3MjcyNmUrMDAsMS43MTk1ODkzMDc0MTYxOTQ1MzVlKzAwLDkuMjk1MDUxMTE0Nzk1MjgwNzg5ZS0wMSw1LjgyMjI0NTkxMzk3OTI0MjYyNmUtMDEsLTIuMDk0NjAzMDcxMjA2MTQ0NzUxZSswMCwxLjIzNzIxOTE0MjMzNTA2NTc3NWUtMDEsLTEuMzAxMDY5NTQxOTM3MDM5OTQyZS0wMSw5LjM5NTMyMjkzODU1Njg3MTUwNmUtMDIsOS40MzA0NjA4NzMyMjUxNzgyMzFlLTAxLC0yLjczOTY3NzE2NzE4OTU1NjMzOWUrMDAsLTUuNjkzMTIwNTM0NzAxODUwOTc3ZS0wMSwyLjY5OTA0MzU0OTQwNzYxMzcwN2UtMDEsLTQuNjY4NDU1NDYwNTI3NjI1MTY3ZS0wMSwtMS40MTY5MDYxMTMxMjYyNTk0NzBlKzAwLDguNjg5NjM0ODY4OTY3OTUzNjc0ZS0wMSwyLjc2ODcxOTA1ODQ2MTI4MDMwMmUtMDEsLTkuNzExMDQ1NzA0NDQ0ODQ2MTYxZS0wMSwzLjE0ODE3MjA0NTE1ODIzNzg5N2UtMDEsOC4yMTU4NTcxMjA0OTc5NTgwMjJlLTAxLDUuMjkyNjQ2Mjk5MzYwODUzNjIzZS0wMyw4LjAwNTY0ODAzNDMwOTk2Nzg1M2UtMDEsNy44MjYwMTc1MTYxNjYxMzUyMjRlLTAyDQo0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuNjAwMDAwMDAwMDAwMDAwMDg5ZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTMuOTUyMjg5ODI2NTQzNTQzNTQ5ZS0wMSwtMS4xNTk0MjA1MTYzOTk5MTI5NDhlKzAwLC04LjU5MzA3NjY5NzE2MTI3MjY0OGUtMDIsMS45NDI5MjkzODA0NTc3MTY2MjZlLTAxLDguNzU4MzI3NjE1ODczMzA5MjEzZS0wMSwtMS4xNTEwNzQ2ODQ4NzIyNjcyMThlLTAxLDQuNTc0MTU2MDYyMjA5OTA4MTEzZS0wMSwtOS42NDYxMjAxMzczMzcyODQwMTdlLTAxLC03LjgyNjI5MTU1ODI3NTI1MTI0OGUtMDEsLTEuMTAzODkyOTkwMjY4ODc3NTIyZS0wMSwtMS4wNTQ2Mjg0NjM5ODUwMTM4NjRlKzAwLDguMjAyNDc4MzczMjQ2ODEyMDYwZS0wMSw0LjYzMTMwMzI5MzE4NjA3MDkyNGUtMDEsMi43OTA5NTc2NDM5MjQ1MzQyNzBlLTAxLDMuMzg5MDQxMjUyMTU5NDQ1NDA1ZS0wMSwyLjAyMTA0MzU2MTQ4NDc5NzQ2OGUrMDAsLTQuNjg4NjQxODc5NjY3OTU2MzE0ZS0wMSwtMi4yMDE0NDEyODU1MDA1NTc4NDNlKzAwLDEuOTkzMDAxOTY4OTY0NjUxOTI3ZS0wMSwtNS4wNjAzNTQwOTYxNjY1ODk1MTZlLTAyLC01LjE3NTE5MDQyNTEwNDAzMjU5OWUtMDEsLTkuNzg4Mjk4NTkzNTg3Njk4NzE1ZS0wMSwtNC4zOTE4OTUyMTgwMjE0NzkzMDhlLTAxLDEuODEzMzg0MjkyMTc4MjEyODQyZS0wMSwtNS4wMjgxNjcwMDY0MjUzODI1MDFlLTAxLDIuNDEyNDUzNjc5NTQzNzQ4NTY0ZSswMCwtOS42MDUwNDM4MTYzMzE0Nzk5NjdlLTAxLC03LjkzMTE3MzYyNzA3NjcxNjM1OWUtMDEsLTIuMjg4NjIwMDQwMDE0NTI4NDU2ZSswMCwyLjUxNDg0NDE1MDIxNTM3MDExMWUtMDEsLTIuMDE2NDA2NjI3Nzk5NzYwMDk4ZSswMCwtNS4zOTQ1NDYzMzM3NDUwMTM5MTFlLTAxLC0yLjc1NjcwNTM0NTYwNTU2OTU2OGUtMDEsLTcuMDk3Mjc5NjU4NDY4ODgyNDI0ZS0wMSwxLjczODg3MjY3NzQ1NDUxMDkwN2UrMDAsOS45NDM5NDM5MTMxNTQ5ODg5MzRlLTAxLDEuMzE5MTM2ODc2MzAxNTc1NjEyZSswMCwtOC44MjQxODgxODU0OTkxODU0ODhlLTAxLDEuMTI4NTk0MDY0NTE0NTY4NDUxZSswMCw0Ljk2MDAwOTQ2MzQzOTYyMTkwMmUtMDENCjQuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwzLjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSw3LjcxNDA1OTQ4Njc2ODQ1NTMyMGUtMDEsMS4wMjk0Mzg4Mjg3ODI3NjcxNTdlKzAwLC05LjA4NzYzMjQ1OTU5MDUzMTEyMGUtMDEsLTQuMjQzMTc2MjA5Nzc5MDE0ODg1ZS0wMSw4LjYyNTk2MDExMzI4NDUxMDk1NWUtMDEsLTIuNjU1NjE5MDkyOTc0OTMyODE2ZSswMCwxLjUxMzMyODA4MjU3MzIwNTE2OWUrMDAsNS41MzEzMjA2NDIwNzU4Mzk4NDRlLTAxLC00LjU3MDM5NjA2NjAyMzQ4NTQ3MWUtMDIsMi4yMDUwNzY1NTc1NzE3MzI5MzFlLTAxLC0xLjAyOTkzNTI4MzMwODk3NjU0NmUrMDAsLTMuNDk5NDMzNjQ1ODkxMDQ3NDQwZS0wMSwxLjEwMDI4NDMzODIyMDM3Mzc0OGUrMDAsMS4yOTgwMjE5NzIzMjYyMjExODVlKzAwLDIuNjk2MjI0MDUyNTYzNTc5NjY1ZSswMCwtNy4zOTI0NjY2MjgwNDE1MTM1NTRlLTAyLC02LjU4NTUyOTY2ODA1MDAzNzQ3N2UtMDEsLTUuMTQyMzM5NjU5Mzk5ODg4MjQxZS0wMSwtMS4wMTgwNDE4NzUyODczNjQ3ODRlKzAwLC03Ljc4NTQ3NTU5NDA4NTA3NTYxMmUtMDIsMy44MjczMjQzMDAxMjI2ODE0MzNlLTAxLC0zLjQyNDIyODA1MzE5NTM4Njk3OGUtMDIsMS4wOTYzNDY4NDU2NjU3OTg1NDJlKzAwLC0yLjM0MjE1ODAxMzQ0NTM2NTM5NGUtMDEsLTMuNDc0NTA2NTI0OTg1NjMyNzI3ZS0wMSwtNS44MTI2ODQ3Njg2MDMyNTIzMzllLTAxLC0xLjYzMjYzNDUyNjIzNDQ5NTIzMWUrMDAsLTEuNTY3NzY3NzI0MzA4NDU0MDE0ZSswMCwtMS4xNzkxNTc5MzA2Mzc2ODc4MTJlKzAwLDEuMzAxNDI4MDcxNjY0NzYwODIyZSswMCw4Ljk1MjYwMjcyODg5OTI5OTMxMWUtMDEsMS4zNzQ5NjQwNjYzOTI5ODk4NDhlKzAwLC0xLjMzMjIxMTY1NDU5NDUwMTc0OWUrMDAsLTEuOTY4NjI0Njg5Nzg2MDIwMjMyZSswMCwtNi42MDA1NjMyMDEzNDA4Mjg4NTZlLTAxLDEuNzU4MTg5NTMyOTYwMjgwMDc3ZS0wMSw0Ljk4NjkwMjc0OTA5ODI3NDgwMWUtMDEsMS4wNDc5NzIxNTU5NjgwNTI4MjFlKzAwLDIuODQyNzk2NzA4MDcyMTQ2MTI4ZS0wMSwxLjc0MjY2ODc4MDY1NTYzMTEzM2UrMDANCjQuMjk5OTk5OTk5OTk5OTk5ODIyZSswMCwzLjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4xMDAwMDAwMDAwMDAwMDAwODllKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSwtMi4yMjYwNTY4MDk0ODMyMDQ3NzllLTAxLC05LjEzMDc5MjE4MDQxNzk2MzY5OWUtMDEsLTEuNjgxMjE4MjE1NDk0NDMzNTEwZSswMCwtOC44ODk3MTM1ODA5NTQ0OTkxNTBlLTAxLDIuNDIxMTc5NjA5ODUxMjMwMDQxZS0wMSwtOC44ODcyMDI1NzM1MzYzMDgwNDhlLTAxLDkuMzY3NDI0NjM1MzUyNTcxNDE2ZS0wMSwxLjQxMjMyNzcwNjAzNzQ0MzA2NWUrMDAsLTIuMzY5NTg2OTA1MjI2NjAyOTgwZSswMCw4LjY0MDUyMzAwNDk3NjQ3OTE4MmUtMDEsLTIuMjM5NjA0MDU4NjYxNzM2NzMwZSswMCw0LjAxNDk5MDU1MDkwMjg3NDkzM2UtMDEsMS4yMjQ4NzA1NjQxOTM2NTk2OTRlKzAwLDYuNDg1NjEwNjM0MzU3NjE3ODEwZS0wMiwtMS4yNzk2ODkxNzMyMDQyMzk0NzJlKzAwLC01Ljg1NDMxMjA0Mjc3NzcyNjIxMGUtMDEsLTIuNjE2NDU0NDU3MTA5MDA3MDM3ZS0wMSwtMS44MjI0NDc4Mzc4OTk0MjkzNzllLTAxLC0yLjAyODk2ODQwNzY2NjY3MDU4MWUtMDEsLTEuMDk4ODI3NzkzMDkzMTM3OTY3ZS0wMSwyLjEzNDgwMDQ4OTEwMTY4ODkwM2UtMDEsLTEuMjA4NTczNjUzNzMzMjIxMjMxZSswMCwtMi40MjAxOTgyOTg3MDIxOTQ5OTRlLTAxLDEuNTE4MjYxMTcwMzU1NzA1NDAzZSswMCwtMy44NDY0NTQyMzE0MjUxNzc2MTdlLTAxLC00LjQzODM2MDkzMTU1MTk3Nzg2MmUtMDEsMS4wNzgxOTczMDM3MTQyMzc4MzFlKzAwLC0yLjU1OTE4NDY2NjM0NDA5NjQ3MGUrMDAsMS4xODEzNzg2MDEyODgyODU4NjhlKzAwLC02LjMxOTAzNzU4MDA1MTY3MjkzMWUtMDEsMS42MzkyODU3MjQ1MjU4NjYyOTVlLTAxLDkuNjMyMTM1NTkyMTE5NjgyNDU1ZS0wMiw5LjQyNDY4MTE5MjIwMzkzNzUxOWUtMDEsLTIuNjc1OTQ3NDYyMzUzNDc2ODAyZS0wMSwtNi43ODAyNTc4MTU2NDQ1MDM2OTRlLTAxLDEuMjk3ODQ1NzkwNjUxMDk4NzMwZSswMCwtMi4zNjQxNzM4MTcxNDExODAxMzRlKzAwLDIuMDMzNDE4MTcwNTI0MzI0OTAwZS0wMiwtMS4zNDc5MjU0MjI2MjkxMjA0MDdlKzAwLC03LjYxNTczMzg4MjU2NTU4OTU4NWUtMDENCjUuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4xOTk5OTk5OTk5OTk5OTk5NTZlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwyLjAxMTI1NjY4MTQ2MzEzNjk2NGUrMDAsLTQuNDU5NTQyNjQ1NTg1NzAyNjI1ZS0wMiwxLjk1MDY5Njk3MTUxMzgxMTcxN2UtMDEsLTEuNzgxNTYyODU1NzA1NTkxMzY0ZSswMCwtNy4yOTA0NDY1ODc5NDY5NTcxMDJlLTAxLDEuOTY1NTc0MDA3Mjg3ODQ5MTQ1ZS0wMSwzLjU0NzU3NjkzMTEzMjE4MDg2NmUtMDEsNi4xNjg4NjU1NDM5MzI3ODc3NDNlLTAxLDguNjI3ODk4OTE3NTc2MzIyMzgwZS0wMyw1LjI3MDA0MjA4NDU0NjU5NjcyOGUtMDEsNC41Mzc4MTkxMjYzNTY4NDAxNDllLTAxLC0xLjgyOTc0MDQxMTAwNDUzMTQ0MmUrMDAsMy43MDA1NzIxOTEwMTQ5NTMwNTBlLTAyLDcuNjc5MDI0MDc3MzI3MDM2ODQ2ZS0wMSw1Ljg5ODc5ODIwNzM0NTE5NDk5OWUtMDEsLTMuNjM4NTg4MDk5NzA3ODk4OTgyZS0wMSwtOC4wNTYyNjUwNzUzOTM2NzgxOTllLTAxLC0xLjExODMxMTkyNDMyMTYzMjE3OGUrMDAsLTEuMzEwNTQwMTE1NDE0MTIzMjk3ZS0wMSwxLjEzMzA3OTg3OTU1OTcyMTg5MmUrMDAsLTEuOTUxODA0MTAxNDgxNjAyMTA1ZSswMCwtNi41OTg5MTcyOTcyOTQ5Nzk0NDVlLTAxLC0xLjEzOTgwMjQ1NTQyNjc3NDA1M2UrMDAsNy44NDk1NzUyMTI0MDUwMDExMTJlLTAxLC01LjU0MzA5NjI2NTcxMzAwODk1MmUtMDEsLTQuNzA2Mzc2NTgxNTQ3OTE0MTYyZS0wMSwtMi4xNjk0OTU2OTkzNjY0ODk4OTRlLTAxLDQuNDUzOTMyNTA4OTQ3OTczMTAxZS0wMSwtMy45MjM4ODk5ODE0OTYzNjczNjNlLTAxLC0zLjA0NjE0MzA1NDc5OTkyNjY0MmUrMDAsNS40MzMxMTg5MTM4NzUxOTY3NDNlLTAxLDQuMzkwNDI5NTc2NzIwNDI1NDQyZS0wMSwtMi4xOTU0MTAyODMzMTIxMzI1MDRlLTAxLC0xLjA4NDAzNjYyMDY3MTkzNDUxNGUrMDAsMy41MTc4MDExMDY4MTM1ODI4MjNlLTAxLDMuNzkyMzU1MzM1MzU1ODY3NTUyZS0wMSwtNC43MDAzMjg4MjcwMDg3NDc4NzhlLTAxLC0yLjE2NzMxNDcwNTc1NTM4NjI2MmUtMDEsLTkuMzAxNTY1MDI1MjQzMjEyNDkyZS0wMSwtMS43ODU4OTA5MjA4NzMyOTE0ODhlLTAxDQo1LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsNC40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCw0LjAwMDAwMDAwMDAwMDAwMDIyMmUtMDEsLTEuNTUwNDI5MzQ1MDgzNDgwOTU5ZSswMCw0LjE3MzE4ODIxMDMxODM1NDg1MmUtMDEsLTkuNDQzNjg0OTA4MjQyOTM4NjAzZS0wMSwyLjM4MTAzMTQ3ODMyMzEyMTIzMWUtMDEsLTEuNDA1OTYyOTE2MjY3ODk5MjY1ZSswMCwtNS45MDA1NzY0NTg2OTUzOTY4MjBlLTAxLC0xLjEwNDg5NDA1MDY1OTI3ODMxNWUtMDEsLTEuNjYwNjk5ODExODY5MjYzMjk4ZSswMCwxLjE1MTQ3ODczMTQwMDkyMTU3OWUtMDEsLTMuNzkxNDc1NjI4Nzk5MjI3MzkzZS0wMSwtMS43NDIzNTYxOTc4MDkyMzA1NjdlKzAwLC0xLjMwMzI0Mjc1NDExMjMxNTcxNmUrMDAsNi4wNTEyMDA4NDA4MjE2NjY2NDllLTAxLDguOTU1NTU5ODU1NTEzMjM5ODUzZS0wMSwtMS4zMTkwODYzOTc3OTk2NzA1NzRlLTAxLDQuMDQ3NjE4MTIwNDA0OTc0OTI4ZS0wMSwyLjIzODQzNTYzMzEyOTEwNjkyOGUtMDEsMy4yOTYyMjk4MjEyNzczODA1MTJlLTAxLDEuMjg1OTg0MDA3MDgwMjkzMDM1ZSswMCwtMS41MDY5OTgzOTgyMTQyNzIwNjFlKzAwLDYuNzY0NjA3MzIzNjE2MjMxODQ5ZS0wMSwtMy44MjAwODk1NTU3NzgyMDIxOTVlLTAxLC0yLjI0MjU4OTM0MjUxNjQwMzQwNmUtMDEsLTMuMDIyNDk3MzA0NTUwNzAwMzE0ZS0wMSwtMy43NTE0NzExNjY2MTI4Mzg2MzdlLTAxLC0xLjIyNjE5NjE5MTc4MzAxOTA4NWUrMDAsMS44MzMzOTE5OTI1NzYwMTI1NDFlLTAxLDEuNjcwOTQzMDMyNzg4ODU3MjUyZSswMCwtNS42MTMzMDIwNDQ4NzU3MTEzNTVlLTAyLC0xLjM4NTA0MjczNTA5NTcyNjAwMWUtMDMsLTYuODcyOTkwMzcxNTY2NjM1MTcwZS0wMSwtMS4xNzQ3NDU0NjQxODExMTQ3NTFlLTAxLDQuNjYxNjY0MjYwMzQwMzA3NDUzZS0wMSwtMy43MDI0MjQ0MDcwNDM0MjkyMzNlLTAxLC00LjUzODA0MDQxMDUyMDAxMDYxNWUtMDEsNC4wMzI2NDU0MDE2MzI0NjgwOTZlLTAxLC05LjE4MDA0NzY5ODE5MDQ1NDQwOGUtMDEsMi41MjQ5NjYyNzA3Njg3MjQyNjRlLTAxLDguMjAzMjE3OTcyNjE0MjE3MzY4ZS0wMSwxLjM1OTk0ODU0MTY3OTQ4NDMxM2UrMDANCjUuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwtOS4wMzgyMDA3Mjc2OTQ2ODEzMDJlLTAyLDEuMzY3NTk3MjM5ODA2NzEzNTQ5ZSswMCwxLjAzNDQwOTg4NjQ4MTUxODEwNGUrMDAsLTkuOTYyMTI2NDAzNzEwNjYxNjA0ZS0wMSwtMS4yMTc5Mzg1MTE1OTMxNTA5MTllKzAwLC0zLjA0OTYzNjM3ODU0NDIwNDMyOWUtMDEsMS4wMjg5MzU0OTI1OTQ4NTQxNzNlKzAwLC03LjIyODcwMDc1NjAwMDQ5MDM5MWUtMDIsLTYuMDA2NTc1NTc2NTc3ODg0OTkwZS0wMSwxLjU1MjI0MzE4MDA0ODU2MDc2N2UrMDAsMi44NjkwNDQ4ODAwMzM0NjM5MThlLTAxLC0yLjMyMDU5NDI3NTc5MDc0MTYyM2UrMDAsMy4xNzE2MDYyNjI5MjY4ODc2MzJlLTAxLDUuMjAwNDA2MTQ1NzA4Njc4MDk2ZS0wMSwyLjI1NjA4NjU0NDcxMTAzNzg2N2UtMDEsNC40OTcxMjEwMDIzMTk5MjUzOThlLTAxLC02LjcyNzU2MDg5MjI5ODE3MzMzNGUtMDIsLTEuMzE4Mzk1ODY5NjQ0NzM0MjA4ZSswMCwtMy43MDcwNDAwMzIyMDQ1MzQzNzRlLTAxLC05LjQ1NjE1Nzk1NTU2MjkxMzgzMWUtMDEsLTkuMzI3NDA5MTA3OTQzNzc4MTk5ZS0wMSwtMS4yNjMwNjgzNDkxMDIyNzUzODllKzAwLDQuNTI0ODkwOTI2Mzk2NDYzNzMxZS0wMSw5Ljc4OTYxNDU0MTI2MjcwODkxM2UtMDIsLTQuNDgxNjUzNjI2ODA3MDgwNTcwZS0wMSwtNi40OTMzNzkyNzczMDM4ODEyMDNlLTAxLC0yLjM0MjMxMDUwMjE0NTIxNjk1MmUtMDIsMS4wNzkxOTQ3MjgxMTI0ODkxNzdlKzAwLC0yLjAwNDIxNTcxNTQ5ODkxNTA4NWUrMDAsMy43Njg3NjUyMDg1MDg5MjczNzhlLTAxLC01LjQ1NzExOTc0MDE3NzgyMzc1MmUtMDEsLTEuODg0NTg1ODQ0OTc5NDQ3NzAwZSswMCwtMS45NDU3MDMwODMxNjM5NTg3OTFlKzAwLC05LjEyNzgzNDk0MTM1MjkxODA2M2UtMDEsMi4xOTUwOTU1NTc5MzA0NTI2MzRlLTAxLDMuOTMwNjI5MzM5ODAwOTE2MjIyZS0wMSwtOS4zODk4MTU3MjY3Nzc4NTI1ODllLTAxLDEuMDE3MDIwOTkxNDEzMjQ0NjQ2ZSswMCwxLjQyMjk4MzQ5NjUxNjEwNjExN2UrMDAsMy45NjA4NjU4NDk1NjU2MDE4MzdlLTAxDQo1LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsLTUuOTE0MDI2Njc4MDgxMTA3OTM1ZS0wMSwxLjEyNDQxOTE4NDUxMDM2ODE1M2UrMDAsNy41NTM5NTY5NTY2MzMzODMwNjllLTAxLDguNjc0MDc0MTEzNTQ5MTc5NDU0ZS0wMSwtNi41NjQ2MzY3NDk3MTUzMTQ2MzRlLTAxLC0yLjgzNDU1NDUwNTI3NDcwMjMxOGUrMDAsMi4xMTY3OTEwMjE0ODM2NzUzNzJlKzAwLC0xLjYxMDg3ODQwMzQ0OTkzMzcxNmUrMDAsLTMuNTc2ODA3MTg2MDIyMTEyODk0ZS0wMiwyLjM4MDc0NTM1MTIxOTc1MDI4M2UrMDAsMy4zMDU3Njc1NjI3NDM3Mzk5NTFlLTAxLDkuNDkyNDY0NzM1NTgyMzU2NTk0ZS0wMSwtMS41MDIzOTY1NjkzODE3MTI3MzJlKzAwLC0xLjc3NzY2Njk1NDczMzcwNjI4NGUrMDAsLTUuMzI3MDI3OTE5Nzk1NTQ1MDE5ZS0wMSwxLjA5MDc0OTczNDQzNDUwMDA3M2UrMDAsLTMuNDYyNDk0NDc2NDczMDk5NzE0ZS0wMSwtNy45NDYzNjMyMTA3MTQ5ODczMDJlLTAxLDEuOTc5NjcyODk5NDQ5Njc0NTYxZS0wMSwxLjA4MTkzNTIxODQ3NzI2NTI1OWUrMDAsLTEuNDQ0OTQwMTk5MDczMzcxNjc4ZSswMCwtMS4yMTA1NDI5OTQxMjMzNTE2NDZlKzAwLC03Ljg4NjY5MjU0NTA5MzY2MjAyMWUtMDEsMS4wOTQ2MzgzNzQ3MTIwOTEzNTVlKzAwLDIuMzQ4MjE1MjU5NDg3MzE5MDE4ZS0wMSwyLjEzMjE1MzQxMDU3MDQ0MzYwOGUrMDAsOS4zNjQ0NTcyNTgzMTExNTg0OTRlLTAxLC0zLjUwOTUxNzY4Njk2NzAzODMwOGUtMDIsMS4yNjUwNzc4MzgwODg3NjU5NDllKzAwLDIuMTE0OTcwMTI3MzE4NzgwMTQ2ZS0wMSwtNy4wNDkyMTM1MjUwNzQ0NDkyMDVlLTAxLDYuNzk5NzQ4NDQyNDUxMDIzNTAwZS0wMSwtNi45NjMyNjY1Mzg2MTA4MjgzMzhlLTAxLC0yLjkwMzk3MTAwODAzODY2NzcwMGUtMDEsMS4zMjc3ODI2OTU5NTc5ODMwMzllKzAwLC0xLjAxMjgxNDg2MjE3Mzk5MzUyNGUtMDEsLTguMDMxNDEzODczNDE2MjgzMjExZS0wMSwtNC42NDMzNzY5MTQzNTQ5MTYzOTZlLTAxLDEuMDIxNzkwNTg1NTg4NjczMDg0ZSswMCwtNS41MjU0MDY3MzQxNjcyOTE4ODllLTAxDQo1LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMy43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDEuNjk5OTk5OTk5OTk5OTk5OTU2ZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsLTMuODY4NzA4NDY4NTA2NDY1NDM3ZS0wMSwtNS4xMDI5MjczOTYzMzYyODUzMzdlLTAxLDEuODM5MjU0OTQzNDAzMDk5NDE4ZS0wMSwtMy44NTQ4OTc2MDM3NTYwODI4MTNlLTAxLC0xLjYwMTgzNjA0ODk3MjUzNjk1MmUrMDAsLTguODcxODA5NDE4NDUwNDAyNjA3ZS0wMSwtOS4zMjc4OTA0MTUwNjQzODI2NTZlLTAxLDEuMjQzMzE5Mzg0NDU1MTU0ODg2ZSswMCw4LjEyNjc0MDQyMTA5MDQyMzcxNmUtMDEsNS44NzI1OTM3OTM5OTgyNTk3NTllLTAxLC01LjA1MzU4MzE3MjY0NDA5OTM5N2UtMDEsLTguMTU3OTE1NDE5OTM5NzEzMDMxZS0wMSwtNS4wNzUxNzYwMTY1NzM1NzA0MjZlLTAxLC0xLjA1MTg4MDEwMjU1MTY3Mzk2OGUrMDAsMi40OTcyMDAzOTE1ODcwMDcxMjllKzAwLC0yLjI0NTMyMTY0ODM3MTQwMjAyNGUrMDAsNS42NDAwODUzNTA3MzgwOTEwMzBlLTAxLC0xLjI4NDU1MjI5Nzk5MjUyNzIzN2UrMDAsLTEuMDQzNDM0OTE0OTQ2OTI2NDQ1ZS0wMSwtOS44ODAwMTk0MjQ5MzczNDQwODZlLTAxLC0xLjE3NzYyODk2MjQ4MjYzMDgyNmUrMDAsLTEuMTQwMTk2MzAwOTM0OTYxNjA0ZSswMCwxLjc1NDk4NjE1Mzc0MjA1ODU3NGUrMDAsLTEuMzI5ODg0MjIzMDk1OTE5ODYwZS0wMSwtNy42NTcwMjE5NDQ3ODA4NjI5NTRlLTAxLDUuNTU3ODY5NjQwODI4NzI5ODA3ZS0wMSwxLjAzNDkzMTQ1NjYyOTkzNTI5OGUtMDIsNy4yMDAzMzc1OTM0MTY1MjgxMjZlLTAxLC0xLjgyNDI1NjY1NTkzNzgyOTkzMGUrMDAsMy4wMzYwMzkwNDQ2MjAwMTQxNzFlLTAxLDcuNzI2OTQ4MzcxMDIzODE3Mzc1ZS0wMSwtMS42NjE1OTgyOTExMTQ1NjM2OTdlKzAwLDQuNDgxOTUyODQ0MjMzMTI0Njc4ZS0wMSwxLjY5NjE4MTU3MjgyODE2MDYyMmUrMDAsLTEuNDg1NzcwMzM1NDcwMjcxNjczZS0wMiw4LjIxNDA1OTM3MDI0ODExMjM5MWUtMDEsNi43MDU3MDQ1MDMxMDkwOTg5MzVlLTAxLC03LjA3NTA1Njk3NTEwNTc2OTAzMGUtMDEsMy45NzY2NzM0NTg2NDk1MTY5OTBlLTAyLC0xLjU2Njk5NDcxMDg2MTYwMjQ2OWUrMDANCjUuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuOTk5OTk5OTk5OTk5OTk5ODg5ZS0wMSwtNC41MTMwMzAzNzEwMjUyNjExNjdlLTAxLDIuNjU2ODc5NzQ5NjYyMzU5MTgwZS0wMSw3LjIzMTAwNDkzNzM3Nzk4MTY2N2UtMDEsMi40NjEyMTI1MjQ3OTExNjE2OTBlLTAyLDcuMTk5ODM3MzAxNDMxNjU0MTI0ZS0wMSwtMS4xMDI5MDYyMTI5NTUzNjk3MjVlKzAwLC0xLjAxNjk3Mjc0NTU0ODcxNTk3M2UtMDEsMS45Mjc5Mzg0NTEzMDc3MjE2MjNlLTAyLDEuODQ5NTkxMjQ2Njc5NjM2NDgwZSswMCwtMi4xNDE2NjY1NjIwMDA4NDIzNzhlLTAxLC00Ljk5MDE2NjM3OTk0MTgyODg3OGUtMDEsMi4xMzUxMjIzODQzNTQ4NjA4NDdlLTAyLC05LjE5MTEzNDQ0ODY5OTQzNzI5OGUtMDEsMS45Mjc1Mzg0OTA2NTIxNjE3MDdlLTAxLC0zLjY1MDU1MjE2NTQ2MjU3NjY1OWUtMDEsLTEuNzkxMzI3NTQ4MDQxMTgzNjU5ZSswMCwtNS44NTg2NTUxMTMzODYwODQ2NjJlLTAyLC0zLjE3NTQzMDkzOTMwMTk5MjQ5NWUtMDEsLTEuNjMyNDIzMzAyMDY3OTgzMjUxZSswMCwtNi43MTM0MTU0NjE0NTIxNzY4MjVlLTAyLDEuNDg5MzU1OTYyMDc0NDgwMjg4ZSswMCw1LjIxMzAzNzQ4Mjc1NzEzNjg1M2UtMDEsNi4xMTkyNzE5MjczMTE1NzgwOTZlLTAxLC0xLjM0MTQ5NjcyNTU4MzA0MjU2MGUrMDAsNC43Njg5ODM2ODkyMjIyMjQyNjVlLTAxLDEuNDg0NDk1ODEzODAwNzgwNzcyZS0wMSw1LjI5MDQ1MjM4MzM0NDMxNjIyM2UtMDEsNC4yMjYyODYyMTcwODgyNTY0NjllLTAxLC0xLjM1OTc4MDcyNTUwMzgxMzY4MWUrMDAsLTQuMTQwMDgxMTU1Nzk2NzQzMTg0ZS0wMiwtNy41Nzg3MDg2MDQyNTE2NjA0ODZlLTAxLC01LjAwODQwOTQyODQ4MjIwOTIxNGUtMDIsLTguOTc0MDA5MjY5MDE4MzA0ODY4ZS0wMSwxLjMxMjQ3MDM2NzE0MDk5NjI5N2UrMDAsLTguNTg5NzIzODg0NDQzNDIzMTYzZS0wMSwtOC45ODk0MjE1NjQ2NTUzNTk5MDllLTAxLDcuNDU4NjQwNjU0MzU1MzUyOTUwZS0wMiwtMS4wNzcwOTkwNjk0MDM5OTQ4MDJlKzAwLC00LjI0NjYzMzAyNDMyODY1NzA4MGUtMDEsLTguMjk5NjQ1OTc1Mzc5NjE5MjM0ZS0wMQ0KNS40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjY5OTk5OTk5OTk5OTk5OTk1NmUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuNDExMTcyMDYzODg5NjExNjk0ZSswMCw3Ljg1ODAzODI2ODMxMTcyNTU4M2UtMDEsLTUuNzQ2OTUxODQ2NTM5NDY0MzY1ZS0wMiwtMy45MTIxNzA1MjE3NDAxNjI1NTRlLTAxLDkuNDA5MTc2MTQ1NzUxMTMzNTkxZS0wMSw0LjA1MjA0MDgwMzIyODg4MDcxN2UtMDEsNC45ODA1MjQwNDY4Mjg1NjcxOTdlLTAxLC0yLjYxOTIyMzczNDQyNTA0ODI0NGUtMDIsLTEuNjg4MjMwMDI3NzcxNDMyMTYyZSswMCwtMS4xMjQ2NTk4MjU1OTU1MjcxNTdlLTAxLC01LjMyNDg5OTE5MjA5MDY3NzQxM2UtMDEsNi40NTA1NTI3MzQ1OTg3Njg5ODllLTAxLDEuMDExODQyNDMyOTk0MTg5MDc4ZSswMCwtNi41Nzk1MTA0NDc2MTE2ODYxMzBlLTAxLDQuNjgzODUyMzQyNzcwNTE2NDMwZS0wMSwxLjczNTg3ODk5NzY4NTcxMzE4OGUrMDAsLTYuNjc3MTI3MjA1NzA1NTg5NzA4ZS0wMSwxLjY4MTkyMTc0MDA3MzEzNzY2MWUrMDAsLTguNTI1ODU4NDcxNzA2NDcwMDQzZS0wMSwyLjI5NTk3NTU2MDc5NTE0NDQ0OWUtMDIsLTEuMTE0NTYxMTg0MTg0MTI1MDk0ZS0wMiwxLjE0OTg4OTk4NzAwNjIzNzQ1MGUtMDIsLTguMzc2NzgwNDE5MDc5NDUyNTg5ZS0wMSwtNS45MTE4MzEwMzc2NDQyOTcyOTNlLTAxLC02LjY3NzIwMjg2MzU5Mzk5Mzk1M2UtMDEsMy4yNjk2MjU5NTQwNDQ1NzM3OTBlLTAxLDMuMzAwMzUxMTQ1MTAzMTE2NDQ2ZS0wMSwyLjIyNTk0NDMzMTczODI1ODc4NmUrMDAsMS4zNzA5ODkwMDYyOTExMjE0MTVlKzAwLC01LjA5ODQzMjQyMTM4NDc5MDkxNGUtMDEsMy4yNDg2OTYxNTc5NjE4NjA2MjBlLTAxLDkuOTcxMTc5ODA3OTE3NTk1MDYyZS0wMSwzLjA2MDE4MjQzMzg1MTc4MDcyM2UtMDIsLTYuOTY0MTU3ODQ0NjkzNTU4MTQxZS0wMiw1LjE1NzQ5NDI3Njk4ODkwNDAwM2UtMDIsOC42NzI3NjYyODgwODQyNzgxODZlLTAxLC04LjQ4MzIwNTIyODA1MjMyNTEzMWUtMDEsLTMuMjU2Njk0Njg4MjAxNzQxNjgzZS0wMSw0LjcwNDMzMTQ0ODQ2NDgxODU0NGUtMDEsMy4xMTQ0NzA3MTU1NDE1NTUxOTBlLTAxDQo1LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCw0LjAwMDAwMDAwMDAwMDAwMDIyMmUtMDEsMi4zOTU4Mjc1OTg1NjM5MTMyNTJlLTAxLC0zLjY5ODAxMTY2MzAzODAzMjE5M2UtMDEsOS43MjUzNTc4OTE0MjUzNjkxMDZlLTAxLDIuMTMzODY4MjQ3MjA0NTM3MzgzZSswMCw0LjA2NDE1NDkzNjc2MjA2MjE4N2UtMDEsLTEuOTMxNzY3MDE1NDk4Mzk5MDIxZS0wMSw3LjU1NzQwMjg4ODk0NTQyNTg4OWUtMDEsLTUuMzkxMzI2MzY3NTI5ODk5NDY2ZS0wMSwtNy40OTY5MDM0NDcwMjg5NjYzODNlLTAxLDMuMjgwODc0NzYxMzcxMTgwMjgyZS0wMiwtMi41ODI3OTY2MzI5Njk5NDQ1NTBlKzAwLC0xLjE1Mzk1MDM2MzY1MjAwOTQyNWUrMDAsLTMuNDc5NjE4NTU5MjA4NDU4MzA2ZS0wMSwtMS4zNTMzODg4NTgxNDc3MTMzNjllKzAwLC0xLjAzMjY0MzEwMTg5MjEyOTYwMGUrMDAsLTQuMzY3NDgzMzc0NTgwMDczOTYzZS0wMSwtMS42NDI5NjUyOTM1MzA2MDkxNjFlKzAwLC00LjA2MDcxNzk2MjU5ODMxOTE4NmUtMDEsLTUuMzUyNzAxNjQ1MzI4NDQ0ODM1ZS0wMSwyLjU0MDUyMDgzODUwMTYwMTc2NGUtMDIsMS4xNTQxODQwMzA0OTQwMTkxODZlKzAwLDEuNzI1MDQ0MTY0OTI4NjU5MDg1ZS0wMSwyLjEwNjIwMjEzNDIwNjM2MjQxN2UtMDIsOS45NDU0NDU3MDMwNzExNzQ4NzBlLTAyLDIuMjczOTI3NzUxMjExMjg0NTk4ZS0wMSwtMS4wMTY3Mzg2NDg2MDk3Njg5MjVlKzAwLC0xLjE0Nzc1MzI0NzcwNzk4MTczM2UtMDEsMy4wODc1MTI0MTgzNjYxMzEyMTdlLTAxLC0xLjM3MDc1OTk4MjU0MzA2MDUyOWUrMDAsOC42NTY1MjkyMjgxNTg1MzI2NTJlLTAxLDEuMDgxMzc2MDM0NDU4MTg5NzUwZSswMCwtNi4zMTM3NTk4ODQ0OTM4ODgwMzBlLTAxLC0yLjQxMzM3NzkxNDUzMTA0NTQ5OGUtMDEsLTguNzgxOTAzNDI4MTAwNzMxMzI0ZS0wMSw2Ljk5MzgwNDgzNTg3ODE3MTI1NWUtMDEsLTEuMDYxMjIyMjg3NDQ1OTA5MTg1ZSswMCwtMi4yMjQ3NzAxMDI0MjkyMDI5NzhlLTAxLC04LjU4OTE5OTA3ODA3NjcxNTc4OGUtMDEsNS4wOTU0Mjc3MDExMjg5NDk2MzJlLTAyLC0xLjc5NDIyOTI3MTQ4OTcyMTAwMGUrMDANCjQuNTk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwxLjMyNjQ2MTY0MjM2NTY5MzQxNmUrMDAsLTkuNjQ2MDY0MjQyMDYyNjM5NjgyZS0wMSw1Ljk4OTQ2ODMxMTYyNzYwNDg0NmUtMDIsLTIuMTI1MjMwNDQ3NzAzMDkxOTk2ZS0wMSwtNy42MjExNDUxMTkyMjQ5ODEyNzllLTAxLC04Ljg3NzgwMTM2NjM1OTM1MzU3NGUtMDEsOS4zNjM5ODU0MzU1MjQ1OTU1MDJlLTAxLC01LjI1NjQwNTkzMTAxOTM5NjY4MmUtMDEsMi43MTE3MDE4NDYzNzMxMDkwNzBlLTAxLC04LjAxNDk2ODg1Mzk0Mzc0ODAyOGUtMDEsLTYuNDcxODE0MzE4NDc3NjA2Njg3ZS0wMSw0LjcyMjQ3MTUwMDg3ODQ4NzMyN2UtMDEsOS4zMDQwODQ5NjExMTExNjMxMjFlLTAxLC0xLjc1MzE2NDAyMzI3MDE5OTQ5MGUtMDEsLTEuNDIxOTE5ODcxNjQwNDM2ODcyZSswMCwxLjk5Nzk1NjA3OTc1MDAwNDY2NWUrMDAsLTguNTY1NDkzMDgyMzQyMDk0OTQ0ZS0wMSwtMS41NDE1ODczOTk2NzE3ODc0ODRlKzAwLDIuNTk0NDI0NTg3NzY4MTUxOTkxZSswMCwtNC4wNDAzMjI5Mzg1MDkzNzE0MDllLTAxLC0xLjQ2MTczMjY4ODI2MTQwODEyMGUrMDAsLTYuODM0Mzk3NjY3ODg2ODE3OTA2ZS0wMSwzLjY3NTQ0ODk2MDIyMjY5MDI5OGUtMDEsMS45MDMxMTU1NzU5MzkzOTY5NTNlLTAxLC04LjUxNzI5MTk3MjUzNTg5OTc1OGUtMDEsMS44MjI3MjM2MDAxMjc5NTk0MjBlKzAwLC01LjIxNTc5Njc3OTkzMzczMTI1M2UtMDEsLTEuMTg0Njg2NTkwNDExNTUxOTk5ZSswMCw5LjYwNjkzMzk4NDYwNjU5NzA4OGUtMDEsMS4zMjkwNjI4NDY1Mzk2ODIzMTllKzAwLC04LjE3NDkzMDk3NjE2MjI2NDYwNmUtMDEsLTEuNDAxMzQ3MjkzMDM5MzEwNDkzZSswMCwxLjAzMDQzODI2NzQxNTYwNDczNmUrMDAsLTIuMDQ3MzIzNjEzMDU3OTYxNzMzZSswMCwtMS4yMjY2MjE2NTkzOTY2MTU0OTRlKzAwLDkuNjc0NDYxNTAwNTAyMzUwNDMxZS0wMSwtNS41MzUyNTQ4MDIyMzg5NTcwNzhlLTAyLC0yLjYzOTM3MzQ4NTkyNjg3ODU5M2UtMDEsMy41MjgxNjYwNjQ5NDM3ODM0ODZlLTAxLC0xLjUyNzc0NDIzNTQ1NDA4NjgzMGUtMDENCjUuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS42OTk5OTk5OTk5OTk5OTk5NTZlKzAwLDUuMDAwMDAwMDAwMDAwMDAwMDAwZS0wMSwtMS4yOTg2ODY3MjIxNjMwOTAyMjRlKzAwLDEuMjc2MDc1MzQ2MDA2MTg3NTUwZSswMCwxLjMyNTAxNDA1Mjg4NjgxNTI4NmUrMDAsMi4wNTMzMjU2Mzc3Nzk1OTY5MjRlLTAxLDQuNTEzNDAxNTQzMjAxMDI3NDMzZS0wMiwyLjMzOTYyNDgwNjAyMDA1Nzk1N2UrMDAsLTIuNzY0MzI4NDUwMTU4MzcyMDMwZS0wMSwtMi41OTU3Njk4MTgzNDAzOTQzMzBlLTAxLDMuNjQ0ODEyNDkyNDA1MDU1NjcxZS0wMSwxLjQ3MTMyMTk1NjE0MjMzODI5NGUrMDAsMS41OTI3NzA3NTQ0MTc0ODM2MTRlKzAwLC0yLjU4NTcyNjMxNjc2NzcxMjQ3NGUtMDEsMy4wODMzMTI0NTk1OTM0NTI0NTllLTAxLC0xLjM3ODA4MzQ2NzA2NDA3NzEzOWUrMDAsLTMuMTE5NzYxMDc5MTYyMTI5NDE0ZS0wMSwtOC40MDI5MDM5NTQ3OTMwNjUwNjdlLTAxLC0xLjAwNjgzMTc1MjI5ODk4MzgwNmUrMDAsMS42ODE1NzY3MTYyNjczMjc2MzFlKzAwLC03LjkyMjg2NjYxODA2MTQ0OTMxOGUtMDEsLTUuMzE2MDU5MDgwMTE0NTQ5MDg1ZS0wMSwzLjY1ODQ4Nzg3OTE2ODU4MjA5MWUtMDEsMS4yOTc4MjUyNjY5NzM1ODU0NjdlKzAwLDQuODExMTUxMjYzODg4MzU0MTI0ZS0wMSwyLjc1OTM1NTExNDAyMTU4MjE3OGUrMDAsLTcuNDY2Nzk3ODI1MTE0OTU2OTMyZS0wMiwyLjU4NzE2NDQwMjI5NzQ2MDQ3NWUtMDEsMi43NTYwMDY3Mzk4NDA1NjM1NDZlLTAxLDEuNDM1MDQ5Mzg2Nzg5MTU0NTAyZSswMCw1LjA3MjM4OTUxMTA5NjE1MjU0OGUtMDEsLTEuMTYyMjk3MDAzODcxNDkwOTU4ZS0wMSwtOS40NzQ4ODU5NDkwNjg3OTUzMzJlLTAxLDIuNDQ0NDM0NTU5NjE2MzI1ODMxZS0wMSwxLjQwMTM0NDgzMTI5MTk1OTYzNmUrMDAsLTQuMTAzODE3OTM2NTc4NzA1ODYxZS0wMSw1LjI4OTQzNjE4NDE2NTgyMjE3NWUtMDEsMi40NjE0Nzc4ODY4NDg0NDE1OTllLTAxLDguNjM1MTk2NTgzODEzMTQ2MTQzZS0wMSwtOC4wNDc1Mzc0MDYzNzg2OTMwODFlLTAxLDIuMzQ2NjQ3MDMwNTI2NTYxNjUwZSswMCwtMS4yNzkxNjExMDcwMjgyNTgyNDllKzAwDQo0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLDEuODk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTMuNjU1NTEwODk5ODYwMzczMDMxZS0wMSw5LjM4MDkyNTQwOTA1NjQ1NTMzM2UtMDEsMi45NjczMzE3MjQ5NDExMzM1MDhlLTAxLDguMjk5ODYxNTkwODExMDMxODA4ZS0wMSwtNC45NjEwMjMzMzk4MjU2MjM3MTNlLTAxLC03LjQ4MDQ5ODI2ODAzNDEwNjcyNGUtMDIsMS4yMjMxOTgzNjM4ODE3Mzg2MjNlLTAyLDEuNTY5MjU5NjE0NTM1OTA0MzQ2ZSswMCw2LjkwNDI5MDI0MzgzMDQ4OTgzN2UtMDEsNy45NjY3MjEwODM2NDY3MTM5NDFlLTAxLC02LjU3OTI2MDkyNTM2Nzk1MjM3M2UtMDEsOS42ODg4MjYzODU2MzA1MDc5MDllLTAxLDIuMjU1ODE2NjM1Njg4MDM1MTk5ZS0wMSwxLjM4OTE0NTMxNTY3NzkyNzQyOGUrMDAsMi4wMTQwNjAxNTQ5MTg0NjgwMTVlKzAwLC0zLjA2NzY1Nzc2MDI3MDA0NTU1M2UtMDEsLTQuMDYzMDMxMzA0NDUwNjI1NTQ3ZS0wMSwtOC42NDA0NDk5MTEwMjM2OTU0MTdlLTAxLC0xLjQzNTc5NTExNzE2MzIwNTUxNGUtMDEsLTMuODIwMjU0NDg5NTAzODM1OTQ4ZS0wMSwzLjU5NTA0Mzk5NTcxMDEwMTU4MWUtMDEsLTEuNDQ1NjY4MTY5MzM3MzU5MzY2ZS0wMSwtMy42MTU5OTI4MDc4MTYxOTc5MThlLTAxLDEuMDY0NTg1MTM2MTI3ODUxNzcyZSswMCwtOS4zNzg4MDIzMTE1MTQ1MTY5MzJlLTAxLDQuMzMxMDc5NTMxNTEzNDM2NDk4ZS0wMSwtNC4wNTk0MTcyNzE4ODQ4MzQyNTVlLTAxLDcuMjQzNjg1MDQ4Njk5NjQ0MDI1ZS0wMSwxLjM4NTI2MTU0NjcyMjIzMDQ1MmUrMDAsLTMuMDMwOTgyNTM0MjQwNzI3MDU1ZS0wMSw0LjQxMDMyOTA3MjczMTUxMzY0NGUtMDEsMS43ODc5Mjg2NTczMzE3OTg0NTRlLTAxLC03Ljk5NDIyMzk5NTQzMDk2NTczNWUtMDEsMi40MDc4NzUwOTc0MTkzODQzODBlLTAxLDIuODkxMjA1MDUyNzg4MTIxNjc3ZS0wMSw0LjEyODcwODIwNDQ2MTc0NjgwMGUtMDEsLTEuOTgzOTg4OTY4MjAwNDU3NDQ4ZS0wMSw5LjQxOTIzMDAzMTAxNDY1Njc3OWUtMDIsLTEuMTQ3NjEwOTQ0ODQzMTM1MzA2ZSswMCwtMy41ODExNDA3NTQ3OTg1Njc0MTZlLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNjAwMDAwMDAwMDAwMDAwMDg5ZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsNS41NTk2MjY3OTcwOTc5Nzk1NzhlLTAxLDguOTI0NzM4ODczMzE1MzAzMjQ1ZS0wMSwtNC4yMjMxNDgyNDEyNTI3MDcxNThlLTAxLDEuMDQ3MTQwMjk0MzMyODQzMjUyZS0wMSwyLjI4MDUzMzI1MTI0MDY3MjAyMWUtMDEsMi4wMTQ3OTk0NjcwNDQzMjg2NjJlLTAxLDUuNDA3NzM1ODUzMDAzOTAyMTM4ZS0wMSwtMS44MTgwNzc2MzAzODM1Njk1MTBlKzAwLC00LjkzMjQwNzAxNDc1NzI1OTA2N2UtMDIsMi4zOTAzMzYwMTI0Njc2NDg5ODVlLTAxLC0xLjAwMDMzMDM0ODk1MzcwNTQyOGUrMDAsMS42NzM5ODU3MDcwMTA3MTAwMzNlKzAwLDEuNjE1NTkyNjcyMzgxNjc5NjQwZS0wMSwxLjU2MzQwNDc0NTAyODkyOTQ1NWUrMDAsLTcuOTA1MjMwMjE4MzMwNzcyMTA3ZS0wMSwtOS4wNzMwMDEyMTUyNTMyNzAxOTFlLTAxLDIuMjQyNTIyMjA5NjU2ODE4OTc3ZS0wMSwtMS42Nzg2ODgzNjI4Mjg2NTY2MzNlKzAwLDIuMTQ5NjU1OTA2MjYwOTM1MjIzZS0wMSw5LjcyMTkyMzIwMDI5MTgwMjk1OGUtMDIsMS4wMTU2NjUyODE1NDIxMDEyMjhlKzAwLDcuMDEwNDEzNDExNjUwOTcwODcyZS0wMSwtNC4xNzQ3NzM0OTg4NTAzMzk4ODFlLTAxLC0xLjA5NzQ5NjY1NDc3MDI0NDcxN2UrMDAsMS43MTIzMDUyMjEzNDMyOTY1NDZlKzAwLC03LjkyMTE1MDIwNTY1MTUwMDQwOWUtMDEsLTEuMDQ1NTI0NTU3MDY5NDY1Nzg4ZSswMCwtMS4wODQ4NTYwNTk0NjE0NDUxNDRlKzAwLDEuMTE3MzA1MzE1NTM2NjY0NTY3ZSswMCwtNS4xODkwMDIwNDQyNDg1MjA3NDBlLTAxLC03LjUzNzA0NDY2MTgwNjAwODI5NGUtMDEsMS4zNzY4OTgyNTkwMzM0NzMyOTNlLTAxLC0yLjA2OTQ0NzEwNTU3MjkxMDIyOGUtMDEsLTYuNzgwOTU0NjA3ODYyNDY5Mzk3ZS0wMSw3LjUzOTkxNDY2OTc4NDc5NjI5N2UtMDEsMS4wNjUzMTU0OTIwOTc5OTQ4MDllKzAwLDkuODUzMTc1MDg5Mzk4NjY5MTUxZS0wMSw3LjY2OTE5NjY5NjYxMTk4OTU1MGUtMDEsNC4wMjYyNTUzMTEzMDAzNTE4NThlLTAxLC0xLjc3NTg4Nzk5OTk2MTgyODg4OWUrMDANCjUuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwzLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS42MDAwMDAwMDAwMDAwMDAwODllKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwxLjY2OTI1MDgwNjM3Njk2ODY1NGUrMDAsMy4wMTk4OTIxMDM1NzU1MjkzOTZlLTAxLDYuMDgxNTY0Mjc2MDA2NDE0ODA0ZS0wMSwxLjExNDk2MjMyMjk0NzQwMjE2MmUrMDAsMS40MzMzNTI1MDI4ODE5OTE3ODZlKzAwLDQuMTgzOTgwMTEzMDkxOTI1MTkwZS0wMSw0LjM1NTQ2MTU5Mjk1NjUzNjAxMGUtMDEsLTUuOTkyMjQyNzc0NTk3MTk0MDExZS0wMSwzLjMwODk3NTExMzg3NjAxOTgzNmUtMDIsLTguNTQxNjEyNjA4MTQzNTQ1MDYwZS0wMSwtNy4xOTk0MDUzMjE0MTg5NDY4NDZlLTAxLC04LjkzNTc0NDAyMzE0MTkxMjc0MGUtMDEsLTEuNTYwMjM4OTA5OTcyODczNjIyZS0wMSwxLjA0OTA5MzE4NzkyMDAxMDI3M2UrMDAsMy4xNzA5NzQ3NzMyOTAxNzk2MjdlKzAwLDEuODk0OTk2Mzc1NDc5MTM0NjMyZS0wMSwtMS4zNDg0MTMwODc3NTYxMjAwMTBlKzAwLDEuMjY0OTgzMzI5ODU2MjU2MDU2ZSswMCwtMy4wMDc4Mzg3NjQ3NjAyNzExMjJlLTAxLC02LjYwNjA4NTkzOTc2OTkyMDA5MGUtMDEsMi4wOTg0OTQ3NzkyMzA1NTMwNTNlLTAxLC0xLjI0MDYyNDU5OTU1NjIyNzUwM2UrMDAsMi4yMjQ2MzE2NDAwODYwNjc3MzBlLTAxLC04LjgzNzU1MjMxOTkxNTQ5Njc3OWUtMDIsOS44Mzc3OTA2ODE1NDc1NjYwMzBlLTAyLDMuODE0MTYyNTQyMDkxNzA4NTc0ZS0wMSw2Ljc0OTIyNTcyNDA4MDY4MDUwMGUtMDIsMS42MzM4MDg0MTEyODkyNDkzMjFlLTAyLDIuODQzMTQ1MTg5OTc5NDQ1MjA5ZS0wMSw0LjE1NDAwNjI2MTcxMTI2ODMwMGUtMDEsLTEuMDMxNDgyNDYwMzE1MjU3Njk5ZSswMCwtMS40Mjk5OTEyNTg2ODU0NDg0MDhlKzAwLC02LjE2MzgwNTIxNzIyMTQ3NTUwOGUtMDIsLTEuNDMyNzM1NDg5OTM0MTA4MDQyZSswMCw4Ljc1MzE0NzA5MjE2NzA4NjQ3NGUtMDIsOS4zODc0Njg3NTY4MjMxMDA3NzllLTAxLDYuMDcxMTE2NzE5MTYwNDU4Njk3ZS0wMSwtMS4wNDgxNzA0MDY4MjU0NzMxMzNlKzAwLC04LjYwMjYyNDUxOTU3NTE4ODI1NmUtMDEsMy4yODMwMTI5NTAwMDc1NTM4ODdlLTAxDQo1LjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTQuMDEyOTc4MDUxMzM1MTAwNDM4ZS0wMSwtMy4xNjY1NTI5NTA1MjEwNjkzMzJlLTAxLDUuOTY5MDY0ODEyNDc5NTM4Njg0ZS0wMSwtOS44NzI4NjY5MzQ1NzY1MjQwODllLTAxLC00LjAxMjM0NzA5OTExMTgyNDMwMGUtMDEsLTguMDAwODI0NzYwODQ2MDEyNTczZS0wMSwtMS4wNDMxMjk0OTgwMzUzNTU1OTZlKzAwLC04LjU3MDc4MTg4NjcxMTY0Njk4MGUtMDEsNi43NzQ2MjE2OTM0NjQxMTY4MDFlLTAxLDUuMTgyMDM4OTQ4MjQyMTU2MjQ1ZS0wMiwtOC43OTE2MDYyODgzNTA3NDg0MjJlLTAxLC0yLjMxMTAxNjA3NTkyOTk2NTI3NGUtMDEsLTEuNjM4ODA3MzA3MTIyMTc3ODE0ZSswMCwtNy4zMzMxMjgwNzU4MzY2NTY4MjNlLTAxLDIuMTQ5NTc0NTM0ODY3Mjg2Nzc5ZSswMCwtOS4wMjQzODQ5NjY1NzUwNTk0NTJlLTAyLDcuMzE2NTg5MjcwMzAzOTI0ODA4ZS0wMSwtNi41NDg4Mzc1MTQ0NDgyOTgyNThlLTAyLDMuNDgxNjkyMzUyNDE4MDg2NTAwZS0wMSw2LjYzMjU4MDg5Njc5MTczOTg5OWUtMDEsLTEuMTA0NjE2NTk3NTI2NDcwNzg5ZSswMCwtMy4wOTM2MjU3MjczOTU4OTM3MTNlLTAyLDEuNTc4ODY1MTk0NDE2NDg4MjA1ZSswMCwtNy45NTUwMDU1MDA1MzI5MTAxMTJlLTAxLC01LjY2NDM5ODUzNzMyMjE5Mjc4NGUtMDEsLTMuMDc2OTEyNzczNjcwMDE3NDc2ZS0wMSwyLjY5MDI0MDczMTc2MjQ2NjU4NmUtMDEsNS4yNDkxNzg2MzY0NTg4MjY2NTJlLTAxLDEuMjY3NDExNjU0ODE4NjU2Njk3ZSswMCw0Ljk5NDk4MjMzNDY4NjU5NDU4M2UtMDEsLTYuMjA1MzEyNTc5ODMzNDAzMTQ3ZS0wMiwxLjI1OTE2NzEyOTYxMDgxMzc4NWUrMDAsNy4wNDExMTAyMjE0MTU4MjE2NTdlLTAxLC0xLjQ5NTY3OTUxNjI1NzAxNjIyOGUrMDAsMi41MjYzNjgyNDAzNTU5OTgzODVlKzAwLDEuNzY5OTIxMzg4MTk2NzMzNzI1ZSswMCwtMS42ODIxNDIyMjc2NzA3NDA5NTNlLTAxLDMuNzc5MTAxMDE3Mzg0NzUwNTcyZS0wMSwxLjMyNDM1ODc0OTk5NTgzOTEzNWUrMDAsLTEuNzIyMDA3OTI2OTY4ODI2MjY0ZS0wMQ0KNS4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDMuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDcuMzAzNTE3OTAzNzcwMTkzNjA5ZS0wMSwxLjEwNDU3ODQ3MzU3MTQ3NjUzOGUrMDAsLTEuMDE0ODI1OTA3NzM0NDQxMDM1ZSswMCwtNi4wMjMzMTg1MzU4Mjg2MjEyMDFlLTAxLDkuMjE0MDgzOTc4MTA1ODEyNTg5ZS0wMSw0LjYwODE0NDc3MTQ4ODMwNTAzNmUtMDEsOS4yMzc5NjU2MDMxMzk0Njg1NzNlLTAxLC0xLjMyNTY4MDE0NjUzNzE4MDM1OWUtMDEsLTIuODkwMDUyMTA5NTQyMzI5ODI4ZS0wMSwtMS45OTg2Mzk0NzU1ODMzNzI3MzhlKzAwLC0xLjE0NjAwMDQyNjUwNzQ0MzI3MWUrMDAsNC43MDY2MDk0NjU4NDkzNjkyODllLTAyLDguMjQ1NTcyMTk1NjQyMzY0NDMzZS0wMSw1LjMxMTc4MzY2NTM1Njk1Mjc4OGUtMDEsLTEuMjgyNDE5NzQwMjc3MDIwMTU5ZS0wMSwtMi43MTc3MTU2NjQ5MDY5NjY2OTllLTAxLDIuMTcxNzk2MzI2MzgyODAxMzQ1ZS0wMSw3LjgyMTExODEwOTIxNTIxNzkzOWUtMDIsMS40MDQ1NDU1MTQ5Mzk3MTE5MTRlKzAwLDEuNDY0NDA3NzA0NzgyNDk4NTQzZS0wMSwtMS40ODEyNDU5NjIxOTcyOTg0MjdlKzAwLC0xLjI3MjU1ODEzNTAzMjMxNjk2MmUrMDAsMS41MTg3NTkzMzY5NjM1ODAxMjBlKzAwLC0xLjE3MTE2MDQ2MTQ1MDA4MDM0OGUrMDAsNy42NDQ5NzQ1MzAzMzUzMzU1ODNlLTAxLC0yLjY4MzcyNzM1MjA5MzgxMjA4MGUtMDEsLTEuNjk3NTgyOTM5MDI0ODU0Nzk4ZS0wMSwtMS4zNDEzMjc4Mjc2ODQyMDExMTNlLTAxLDEuMjIxMzg0OTU5NDU5MTk4MzM4ZSswMCwtMS45Mjg0MTgyODU0Mzk2NDY3MThlLTAxLC0zLjMzMTkyODI4NDUxNTI5NTMyNGUtMDIsLTEuNTMwODAzNDk3Mzk5NDkyNjE5ZSswMCwyLjA2NjkwNTExNzA4MDAzMjg4M2UtMDEsNS4zMTA0MjUwNjk3ODA1OTY1ODVlLTAxLDIuMzkxNDU1ODA2NTM3ODcwMjEwZS0wMSwxLjM5Nzg5NjI2MTA4NjczNTM3MGUrMDAsNS41MTcxMzU0NzgwMjMxNzM5MTdlLTAyLDIuOTg5Nzc0NTYxMTkwMTc2MDM5ZS0wMSwxLjY0ODUwNDAxMDI2ODE3ODk0M2UrMDAsLTEuNTUwMDE0MTg5MzU4MTQ3ODMxZSswMA0KNC43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCwxLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLC00LjU1ODI1MzQ3Nzk5MzY4ODQwN2UtMDEsMS40MjYxNTg3NTIwMTkyNjYyMjllKzAwLDkuMzYxMjkxNDgzMTEwODI0MDQxZS0wMSw2Ljc4MzgwMDk4ODQwNDcwMzQ2OWUtMDEsOC4zMjY1MDczOTQ2NDQ3ODMxNzhlLTAxLDMuMjcwNjYyMDkxMjEwMjIwNzc5ZS0wMSwxLjYzMTU5NzQyNzUzMjI3MTU0OWUrMDAsMy43Nzc1OTE2OTczMDcxNzg4MDllLTAxLDIuMzk4NjcxMDU4OTUyNzg1NzA2ZS0wMSwxLjU4OTU4Njc0MTI1NjQzMjY3OGUtMDEsMS45Mjg2Mzk1NTU1MDM4NjAxODFlLTAxLC0xLjE1NzAxNzI4MDgxNTg2Nzg1NWUrMDAsNy43MDY3MzA1NDQ2MzM0MzMzMjJlLTAxLC0xLjMwNDM5NzMzNzgzMzI3MzIxOGUtMDEsMS44MjE5MTUwOTc4NjA0MDU5NTJlKzAwLC03LjU2NTA0NzA1ODg0MjI4OTExOGUtMDIsNC4yMDkxODI4NDE3NTY1NjU3NjNlLTAxLDIuNDY2MDIxODYyNjEzMzQ0MjczZS0wMSwtNi4yNTU1NzAzNTEwOTI1MzMxMjFlLTAxLDkuOTIxMzY4Mjg1MTg1MDU4MjAwZS0wMSwxLjkwNTA2MzY0MDU2MDAxNzY0NmUrMDAsLTEuNDc3NzIxOTY1OTg0NDc3NzIwZS0wMiwtMy4wMDQ3ODc4NTU4NTQyMjI5MjJlLTAxLC0zLjU1MDI4NzMxMDU1Mzc0MDgwNWUtMDEsLTEuODkyMzYxODkzMzE3MzQxMzkzZSswMCwtMS43NzgxMzE0MzcwMzAxMjU0MzllLTAxLDIuNTA5OTgxMTYwMDgzMjM5NDYwZS0wMSwxLjA1NDc1NzkyNTE4MDI4Mjc3NGUrMDAsOS42MDA0Nzc0MTE0OTkyNzg1NzllLTAxLC00LjE2NDk5MDgyNDM2NjkyNDgwNGUtMDEsLTIuNzY4MjI5OTQ3NzM4ODgzMzEyZS0wMSwxLjEyMzkwNTMwNTYxNDQzOTAyMWUrMDAsLTEuNzM0NjM4OTcwNzI4NzkxMjUyZS0wMSwtNS4xMDAyOTUzOTc1NTYxNjkzNDFlLTAxLDEuMzkyNTE4NDQ5NDM0MjcyMzg3ZSswMCwxLjAzNzU4NTY2NzA1MDYzNDA0MmUrMDAsMS44NzkxNzkxNzc0MjU3ODAyMzdlLTAyLC01LjkzNzc3NDQ3Nzc4NjY3NDc3NmUtMDEsLTIuMDExODgwMzE5MjQ0NzA5MDAzZSswMCw1Ljg5NzAzNjA1NTc0NzIzODk5MmUtMDENCjQuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS42MDAwMDAwMDAwMDAwMDAwODllKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtOC45NjM2OTcyMjU1MjE4MDE3MDRlLTAxLC0xLjk2MjczMjAwOTE0MDc1MjA3NmUrMDAsMS41ODQ4MjA1MjczNDkwMTc5MDVlKzAwLDYuNDc5Njc3OTEwMDk4ODgzMjc2ZS0wMSwtMS4xMzkwMDgxOTMxMTY5NjUzMjhlKzAwLC0xLjIxNDQwMTM4Mjk1OTI1OTAzNWUrMDAsOC43MDk2MTc4MjE3MTYxOTU2OTZlLTAxLC04Ljc3OTcwNjE2NTM1ODcwMTYzMWUtMDEsMS4yOTYxNDk4Njc1Mjc4ODMzMDRlKzAwLDYuMTY0NTkzMTI2MjYxNTUyNzU4ZS0wMSw1LjM2NTk2NTIwNTY2ODIzNDk4M2UtMDEsNC4wNDY5NTQ1NTYxNDMwMDMxNDZlLTAxLDEuOTE0NTA4NzIwMjM5MTE3ODM0ZS0wMSw4LjgwNTExMTk5MTc3MTEwNTE1MWUtMDEsLTQuNTQwODAzNjI1MTU2MDUxMjkzZS0wMSw4LjU5NTE5NzM0MzQzODQ2ODE5NmUtMDIsNy41MTk0NjU4NzY3NzE5NTY4ODBlLTAxLDUuNjI5ODk3MTg1ODYxMjc3ODUzZS0wMSwtMS4xOTQ5ODY4MDUyNjg2NjAzMDFlKzAwLC01LjAwNDA5NjY3MzA0MjYzOTQ5OGUtMDEsMi41MjgwMzUwNTQxOTE1NDUyODNlLTAxLC00LjA4MDE0NzA5MDM5ODk2ODk0NWUtMDEsMS43NzQ2NTg1NjA5NzMzMzMxODhlKzAwLC0zLjkzMTUzMTk0NzU0MTEyODY2OWUtMDEsLTEuNjIyMTg0NDc1NzY2OTA4NDk2ZS0wMSw3LjY5NDMwMTc4MTc3MzAzODU4NGUtMDEsMy4zMDUzMjc0MzIzNDkxNTc3MTJlLTAxLC0xLjQ1Mjc0NDU3MjA0NzY5MjI1MWUtMDEsLTcuNTY0OTM1Mjg4ODA3NDgyNzgzZS0wMSwzLjAxNTE0MDU3Mzk2NzY2MTc3NWUtMDEsMS4wMzkwOTY0NDAzNzgzOTI2NjFlKzAwLDQuNzkwOTUyMjQwOTgyMjg1NzgxZS0wMSwtNy43ODE4MzUyMTQ1NjEyMjI0MDJlLTAxLDEuNzM2Nzc0OTU2OTc2NzEwODA0ZSswMCwtMS40NDY1Nzc4OTAwMzU4OTQzMjBlKzAwLC0xLjU4MjY4NTY0MTgwMjc4OTAzNGUrMDAsOS42MDU1NzIyNDQ1NzIyODM1MzZlLTAxLDIuMjU4NDA0Nzg2MDI2OTAxMDM0ZS0wMSwtNS40OTQ5ODU0NjMwNDA0MDI2OTZlLTAxLC0xLjA5ODU3MDcyNzU1NTMyOTU4NWUrMDANCjUuNDAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuMDAwMDAwMDAwMDAwMDAwMjIyZS0wMSwyLjMyMDc5OTgzOTI4MDI5ODIwNWUrMDAsMS4xNzA5MDg3MjE1NTQ0MTk0OTZlLTAxLDUuMzQyMDExNzA4NDU3NzE0NTU4ZS0wMSwzLjE3ODg1MDk3MjM4MTgxNTkwOWUtMDEsNC4zNDgwNzk1NzczMTE1NzkzNDdlLTAxLDUuNDAwOTQ0NjA1MjQ4MDU5MTk0ZS0wMSw3LjMyNDI0MDA5NzU0ODc2MjA0MWUtMDEsLTMuNzUyMjI0MDA3NjA2NzI3MDMwZS0wMSwtMi45MTY0MTk4NjM1MTg0NDU3MzJlLTAxLC0xLjc0MTAyMjgwODM1ODkwMTQ0MWUrMDAsLTcuODAzMDQ0MDY1MDE1Mzk0MjcxZS0wMSwyLjcxMTEyNzk2NDQ2NzE0ODc2NWUtMDEsMS4wNDUwMjMzNzU1MDI2OTA1MzJlKzAwLDUuOTkwMzk1MjYzNzYxODQwNzI3ZS0wMSwtMy40MDY5MjM0Mzg3NzkzMDQ1OTJlLTAxLC0xLjI2MzE3MjkxMjA4NTE1NDI1NGUrMDAsLTIuNzc3MzU5MTQ1NDI3NDMzMzQwZSswMCwxLjE1MTczMzk3NDc4MDc5OTA4NmUrMDAsLTUuODkyMjg5ODY1MTAxNDk3NjU5ZS0wMSwtNC40ODQ2NTAwNjIwNDA1OTI2ODhlLTAxLDEuMzE1NzM5Njc5MDgwNjg3MTc0ZS0wMSwtMS40MDU1NjAwNDczOTE4ODk4ODllKzAwLC0zLjQ5NzgyMTgwMTExNTM2ODg4OWUtMDEsMi4wMjM0NzE5NDk3Njk5NzQwMjFlKzAwLDUuMDUzODY5Mzg1NzczNDI3MzcwZS0wMSwzLjU5MjQ5MTU2NTEzNDU2NDAyNGUtMDEsLTEuNTgyNDk0NDc3OTgxNzU4NDYzZSswMCwyLjI0MzYwMTg5NDU4MjY0MDM2NmUrMDAsLTEuNDIyNzk0OTA4NjI2MzQyNzI1ZSswMCwxLjkyMjMyNDc1NTQ0NDM5ODUxNGUrMDAsLTIuMTE1MDU2MDE1MTg3ODA3NTAzZSswMCwxLjQwNTM2NTQzODcyNDQyMDMyNGUrMDAsMS42MTgwNTQyNjkwMDAyMjU1MzFlKzAwLC04LjI0NDA5MTIxMzI3ODM0NjE1M2UtMDEsNC4yMjU4MDM3MjI3Mjg4Mjc1MzhlLTAxLDUuNDc0ODA1NzIxMDQ2NjUwNTMxZS0wMSwtOC4xMzc5NDQ4MzIzMTMwNTg3NjNlLTAxLC0xLjQ0OTExNzYxMDczNjkzMDM1MWUrMDAsLTEuMzE3NzE3MzQzMTQwNzY1Mzg1ZSswMCw1LjQxMDA4MjE5OTU5ODA3NjM0N2UtMDENCjUuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSwtOC41MTE1NjAyNTE5NDA1NzM5MThlLTAyLC01LjY0MzAxMDMzMzAyMTYwNDE1MmUtMDEsOS42Njc2ODAxMTE2NjQ2MDE2MTdlLTAxLDUuMDgwNjc5MDkzOTE0Nzc3MjMzZS0wMSwtNy41NTQ2MjcyNjM2NTYzMzM4NThlLTAxLC0xLjIwMTIwMTUxOTAxNzM4OTI1MmUrMDAsNS4yMzI2MTczODY4ODA3NjkwNTBlLTAxLC01LjM3NTgzMzY4NTU4MDYxODgwNGUtMDEsOS45MjA0ODYyNTMxNTAyNDMwMTdlLTAyLDEuNTc2Mjk4OTcyNjI3NzE3Njc2ZSswMCw1LjAyMzI4MjQwMDc0Nzc5NjA4NGUtMDEsLTguNjIyNjY5OTk3NTMyMzY3MjkyZS0wMSwxLjYwNjYxMTg5ODE5NzcyODE1MGUtMDEsLTkuNTI2NDQ5NTI4MTUzODc3NDY2ZS0wMSwxLjYwODUyMjE1NTk0ODcyMzcyMGUrMDAsLTUuNjE1Nzg3NDk2MDMyMjA4NTAzZS0wMSwyLjA3MjcwNzQ2OTczNjE4NjM1OWUtMDEsMy4wNzczMjU3NDY3OTQzMTk5MTZlLTAxLDEuNTkyNTA0NjgzNzM3MDI0MzYyZS0wMSwtMS45NTg1NDg5NTUxMzY1Mzg3MDVlKzAwLC0xLjQ0NjQyMTA2Mzk4MzMyODU5MmUrMDAsLTQuNTIzNTAyNzU1NjkwOTE2ODY2ZS0wMSwzLjE5NDMxODMzMzMxNTMwNjM0NmUtMDEsLTEuMzc3NzkyMTQyODU3NzA2NjgxZS0wMSwtOS41NzE0NzQ3MzE1MTAxNjc4MTBlLTAxLC0xLjM0ODQyNDMxOTEyMTcwMDkwOWUrMDAsLTQuMDE1NTc1NDQ0OTkzNDM2MTA1ZS0wMSwtNC42ODQ3NjA0NDY3OTcyMzE0NzBlLTAxLDUuMTI4MzY0NTc1OTI3NTY2NDQ5ZS0wMSwtMy4yNjMxODQ2MjE1ODMxODExMjJlLTAxLDYuMDI3MDc2NTY0MjkzMjk1NTI0ZS0wMSwtNS45NDY0OTc2OTcyMDQwNTM5NjdlLTAxLC0yLjU1OTU3NjY5MjE0MjY4MzI0MWUtMDEsLTMuNDgwNDYzNzk2NDI2MTk0MTkwZS0wMSwtNy44MjM2Njk2NjkwMjA4OTczMzNlLTAxLDYuMjUxMTg2NTY0MzM3MzAyMTMyZS0wMSwtOC4xMzU5NTk5NzA5NDUwNzAyODVlLTAxLC01LjIxNjQxNTA5OTcwNjE4OTc3M2UtMDEsLTcuMzExOTY0NTk0ODE5NzIzOTk1ZS0wMiwtMS4yOTczNzk2NTU5NTY3Mzk4NzVlKzAwDQo1LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsNC4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTMuMjQ5MzQ5NTgzMjA0OTkxMjMyZS0wMSwtNy4xMTMwNjM1OTc0Mjc4ODU1MjBlLTAxLC0zLjg4MTU0MTkyNDgyMjQ5NTgyNmUtMDEsLTUuOTkyODAwMjY3MTA5MDYyMTYyZS0wMiwtNy45OTkxMzYyMzE0MDY2NDcyMDJlLTAxLC0yLjIwMDc1Nzc5ODIwMzU1NTg4MmUtMDEsMS4zMDg2Njg3NTIzNTIxNzkxNjVlKzAwLC0yLjU3OTg1NTgyNTQ0ODcxMTExNWUtMDIsMS4xNDUyNjIxNzMwMTkyMjQ3MjdlKzAwLDMuNDY0OTQ0NDIwMDY3NjA3MTY3ZS0wMSw3Ljc0MTYwNjA5ODE4ODE2NDAzMWUtMDEsLTcuNzQ0NTg5Njg3NzA4MjU4NzMwZS0wMSwxLjA0OTA3MTY1MDg1NTEyNzE4NmUtMDEsMS4zMzkxMjkyMjYxNTQ3NTkxMDBlLTAxLC02LjEyNjI1NzM4ODc0OTM1NjU0N2UtMDEsLTguMjI4MjgzMjQyOTQyODE3NjU1ZS0wMSwtMS40OTAyNjUzODc5MDcyOTgyMzNlKzAwLDEuNDk2MTM5NjM2OTUxNjMxOTkwZSswMCwtOS43MjQwMjg4OTM1MjQ5NzYzNDdlLTAxLDEuMzQ2MjIxMDczMjIyMzAwMTEzZSswMCwtNC42NzQ5MzE3MzY1Nzg1MzQ3ODBlLTAxLC04LjYyNDkzMjk5NzI0NzMzODc1MWUtMDEsNi4yMjUxOTE0MDMwNDk5NzY2NDZlLTAxLC02LjMxMTkxOTQxNzQ2ODU3MTEwM2UtMDEsNS42ODQ1ODkxODkyNDI3NjkxMjVlLTAxLC0zLjMyODExNzY0ODUyMjA5NTkwNmUtMDEsNC44MDQyNDQ5NjExNzc4Njc1OTBlLTAxLC05LjY4MTg2MDYzOTA3MTA0OTMyNGUtMDEsOC4zMTM1MTA1Nzk4NDc2ODI3MTNlLTAxLDQuODc5NzI2ODI2NjMwMDQ1ODY2ZS0wMSwtOS4xOTY1MDY5MDA2MjY2MTc1NzZlLTAxLDIuNjQyOTM1NzIxMDE0NzQxNzIzZSswMCw1LjQwMTIzMDI2NDAwNDk0MDMyOWUtMDEsMi4yOTA0NjcwNzA1MzA1Mzg3NzNlKzAwLDEuNjAwMjY3ODE4NzQ4NzU5MTE5ZSswMCwtMS44ODgzNDc4MDIxNzc4Mzc5ODZlLTAxLC00LjEyMjcxNzU0NjA0NTQyOTA2MGUtMDEsLTQuMDM0NTkxODM0MjA4MDEyMjYyZS0wMSwtMS44MzAwMjg1NTA0Mjc4MTAyMDhlKzAwLC02Ljk1ODM1MTE5MzQ5NTQ3MzM3NWUtMDENCjQuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSwyLjQ2NzY2MDIzOTc5OTcwNTc3OWUtMDEsMS41MjU5NTc1NjA4ODQ4MDgzODRlKzAwLC03LjcyNzcxODgyOTc4MjAyMDk1OWUtMDEsOC44MjA1NjU5OTM2MzAxMDYxODNlLTAxLC0xLjI1MjU5MzM0MTUwMzMxOTAyNGUrMDAsLTUuODYzMjAwMjUyMTExMzIzNTYzZS0wMSwtNC41NzY0MDU5NDI4OTUyNTk3MDRlLTAxLDMuNzE4MTEwODE0OTc0OTM0Nzg2ZS0wMSw0LjU3MzA5NjQ2NzIwODExMjU4MWUtMDEsOS42MjM0MTc0NDgxNDM0NTIwMTNlLTAxLDcuNzA4MzY5NjA0MDQ5MzY2NTUyZS0wMSwyLjQzMTY4MjE1NDAyNDkxNzI3NWUtMDEsMy45MDM2NDk0MzUwODYyMjM4NjJlLTAxLDEuNTg4NTMwNjkxMDk3NTMyNTMyZSswMCwtNS4xMDkyNjE4MTIzMjI2MzA3NjllLTAxLDcuNzQ3MjgzMTkwNjcxNjIxMDc4ZS0wMSwtMS44MDgxNDM5MjY0OTgyNTE1MDhlKzAwLDQuMTEzMzQyNDI4OTc2MDg2MTUxZS0wMSwtNC44MzI0OTU0MjQ3OTEwNzM5NjhlLTAxLDIuNTcxMTgyNDMxNTEwMDI1MTc2ZS0wMywxLjA0MDA4NjI0NTA1MzcwMzE3M2UrMDAsMS42NDY0MzgwOTUyNjM5NzYyMjBlLTAxLDguODUxODc1NDEyMDg5MjcyODY1ZS0wMSwxLjQ3Mzc2NDgxNTEzODQwNDg0OWUrMDAsMy44OTA5Mzk2ODg2NTcyMDU2MzFlLTAxLDEuMTcxMDQxMDY0NjIwNDg4MjkyZSswMCwtMy4yNjU2MDk3NzY3OTIwNzcyMDFlLTAxLC04LjIwOTg4MjI2OTYxNDA0NDU3NWUtMDMsLTUuMjI2MTk0MTYzOTg0Nzc5NzYxZS0wMSwxLjA0Mjk3NzU5NDY0NjM3NTk2MWUrMDAsNC4xNDA5MTM1Mzc5MzU5NTA3MzllLTAxLC01LjA3MjM0NDYxODk0OTIyNjA1OGUtMDEsMS41NDY2ODgzMzY0NjMzMjE4NzhlLTAxLDEuMDQxNTY4Mzg4ODE4NTgxODI1ZSswMCwtMy45MjY3OTkxMDM3OTUzMTg0MzVlLTAyLC05LjQ4OTMyODEwODQ5NzYzNDQxOGUtMDEsMS4zMTkxMTc1NTc4NzQxMjIxMDRlLTAxLC0xLjk4MDU2NTU5MTA2ODkzOTcwMWUrMDAsNy42ODc3MDY0NDM5OTQ3NDk1NjFlLTAxLC00LjIxMzI3NTg3MzI0NjgwNTA4MWUtMDENCjUuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwzLjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS4xOTk5OTk5OTk5OTk5OTk5NTZlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwtNC42OTMxMDczNjI3OTEwNjc0MzhlLTAxLDguNzU2OTU2Nzg3Nzk1MDY3MTQzZS0wMSwtMS4zNjUxNjI4NzcyMjUxNjg3MTRlKzAwLDEuOTQ3MDk4NjQyODIwMzU3ODI4ZSswMCwtNC44MDI0MjA0MTczODIyMzMyNDJlLTAxLC01LjIzMjUwOTQzMzg0ODk1MDg0MmUtMDEsMS4wMjEyMjQ3NDMxNjcxNjMwNTJlKzAwLDcuMDg2OTUyNzMxMTA0MjY1NzEzZS0wMSwyLjQ1MTIyOTcxOTA3NTA3NjAzMGUrMDAsLTIuMTEyMDU5ODM2MzE1MTk5ODkwZS0wMSwtMS4yMDQwNjYzODY2NDQwOTczMjBlLTAxLC0xLjQ3OTMxNTk3OTk2MzI1MzU5MWUrMDAsLTMuMzIxMDIyNzczNDg4MjUxMzY3ZS0wMSwtNy4yMTQzMTI5NTU3MTc1NTc4MThlLTAxLC00LjQ4NzY3MDEzMTA1NDk5MTU3NGUtMDEsLTEuNzQ0MTg3NzU2NTUzOTU1MTkzZSswMCwxLjY2MDYwNzU1OTg5NDUxNDAyOWUrMDAsLTEuNDE2NjAzNDgyNDI1NjQwNjAzZSswMCwtMi44MDIyMDI3OTgzOTE3MTMwNDZlKzAwLC0xLjE4ODQyNDQyMTU4MzAxOTMwOGUrMDAsLTYuMDM4Mzk1NTI3OTYxNTA5ODAxZS0wMSwtMS4xNDk1NTQwNjMyNTcxMTgxNzVlKzAwLDEuMDk4MzAzNTQwNzMyNTEyMzUxZSswMCwtMS4zNzgzOTE3ODU5NjA5Mzg0NzZlLTAxLDIuNTM4NTYwNDQwNjQ1ODk4NzExZS0wMiw2LjEwMzkxNzY0MzA1NDEyNzU0MGUtMDEsMi44NjAxMjUyNjk3ODExNzk2NDdlLTAxLDkuNzg1NjcyOTc0NDYwNDI5ODI5ZS0wMSwtMS4xMDk0Nzc1NTM2MzYxNDUxOTdlKzAwLC01LjQ3NTE4MTAwNjc5NDMxNzQwN2UtMDEsNi42NTk2NzE0NjA2OTUzNzc3NDNlLTAxLC0yLjUzNDU1NDQ2MjA4NDIyOTk2NGUrMDAsLTEuMzc1MTg0NDc5MzE3MjQwNzQ5ZSswMCw1LjAwOTkyMjMyMTc5OTQ2NTk1MGUtMDEsLTQuODAyNDkwMzQ5OTQ5MjU0Mzg5ZS0wMSw5LjM2MTA3NTUwMTA5Njk3NTk0OGUtMDEsOC4wOTE4MDI5Njg1MzE2MjcyODNlLTAxLC0xLjE5ODA5Mjg4MDE5MTAzODIxMmUrMDAsNC4wNjY1NzA4NzQ2Njg4MTE3MzBlLTAxLDEuMjAxNjk3ODU1NjY3NTA2NDIwZSswMA0KNS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDMuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjMwMDAwMDAwMDAwMDAwMDA0NGUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuNDc0MzQ0MDE2NTA5NzE5MDgwZS0wMSwtOS43NzQ2NDg3NzI0NTg2OTE2ODFlLTAxLDguNzkzODk5NDE5MTMzNzAwNTQ2ZS0wMSw2LjM1NDI0NTI2NTUzOTk1NTA1N2UtMDEsNS40MjYxMDc4MzQ5ODc5NjMyMzBlLTAxLDcuMTU5Mzg4OTM0MzY5OTE2ODU3ZS0wMSwtMi45OTQ2MTI4NjAyMjc2MTg5NjdlKzAwLDguODA5Mzc1NjEwODA5NzE1NDI5ZS0wMSwxLjgwODEzMTgxMDU3ODk3NTQyOWUrMDAsNC4zNjYzODQ3NDYyOTI5MzAwNTJlLTAxLDEuOTI3Mjg5OTY0OTk3MjY4MjkwZS0wMSw2Ljk2NDM4NjczMzkxNDM5Mjc4MGUtMDEsMy4zODIyNTQ3MzY4NTExNTI5NjVlLTAxLDYuNTE3ODEyNjE3MDA2MTYwMTAzZS0wMSwxLjQ3MTAwMDI0NTQxMDgwNjM0NWUtMDMsLTcuNjY3MDQ4NTQ1MzY5MDAyOTMyZS0wMSwtMS4wMDQzMjI3MTIyMTQ2MTM0NDRlKzAwLC05Ljk4MTkxNzI4MjMxODY0MDgzOGUtMDEsLTEuMzczMDQyNTUwOTUwODk1MjI0ZSswMCwtMS4wNjc3NDIwMTEwMTkxMDY0ODVlKzAwLDEuNzYxMjY2MTI3NDE5ODYzMTAzZSswMCw3LjU0MDk1NjYzNjU2MjQyNjk4NWUtMDEsLTYuMjUwMjczOTA2ODQ2NzEyODAxZS0wMSwtMy45MDM5MjY5Mzk4NTUwODA3NjllLTAxLDEuMTI1NTc1MzA5MDY0NTQyODk1ZS0wMSwtNi41NTU0NTAyOTQ4NDM1ODExMDVlLTAxLDYuNzUxNjg1NzE3NDMyNDg1OTY3ZS0wMiw3Ljc3NjA0MTM3OTAyOTEyMDUxNWUtMDEsLTMuNTc0MjczMzU0ODE3MzQ4NDUzZS0wMiwzLjM2MDE1NzQyNjYxOTkyMTMzOWUtMDEsOC44NjQ5MTUzOTM1OTYxNTg4NzdlLTAxLC0yLjcyMTMxNzU2MDE4MjA4MjE1MWUtMDEsMi44NDc5MDU5OTEzNDM2MzE2NDllLTAxLC0zLjA5Mzc3NTkyODgzMzYxMzYzMWUtMDEsLTIuODUyODg2OTgzNDQxNjM5ODkzZS0wMiwtMy4yNDczMDI2NTA4Mjk1OTk5MDJlLTAxLC01LjI4ODY5ODUzNTU2MTE1MjY1OGUtMDEsMS43MzcxMTg1Mjk4NzAyMzQzNTFlLTAxLDUuNjY1NDUzMTU4MTgyMTI0MzYwZS0wMSwxLjQ2MzA0NDQ2MDAxMDQ0MjUyN2UtMDENCjQuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDU2ZS0wMSw0Ljk4NzI2OTU4MzExOTMxOTc4MmUtMDEsLTcuMzc5MzE3ODAyNDEyMjk4NTEwZS0wMSwtMS4yMDM3MzUxOTIxOTk3Nzk0MjVlKzAwLDQuMTcwNDM1MDI5Njc2MDM1NjMyZS0wMSw2Ljg3ODgxMzkxMTc0NzU0NTUyOWUtMDEsNC45ODU3MjY2NTk5ODIyNjQ3MTllLTAyLDEuMzQ4MDM1NzgwNDI0NzE4NzIxZSswMCw5LjA3Njk4Nzk3OTg3ODk4NjUzNGUtMDEsMi42ODA1NzA4NDA3NjkwMDA1NDBlKzAwLC0yLjAwODA4NTEzOTk1NjY1NTcxOGUtMDEsLTkuOTg4NDg3OTYwOTUzNjgxNDEwZS0wMSwtNy40MDEzNjc5MDczOTUxMzU1MDRlLTAxLC01LjY1NDk3ODA2Mzc0NjU2Mjk3N2UtMDEsNC43NjAzMTM4MzQzODExNDUxOTNlLTAxLC0yLjE1ODA2ODU2Mzk2MTI1NjkwM2UrMDAsMS4zMTg1NTEwMTgwOTA4MzY2MzVlKzAwLC0yLjM5Mjk2NTkxMTQyMzQ0MTM5NGUtMDEsLTIuNDY3OTM1NTc3ODg3NTE3ODI4ZS0wMSwtMS4wNzkzNDMxNjYwMjQ5OTUyNDllKzAwLC0xLjE0MjI1NTUxNDUwMTgwMjA3MmUtMDEsMS4zMjM5NzY3NjY3NTMzNTUyMjVlLTAyLC0xLjIxOTQ0OTI3NjAwMjc3MjY3MGUtMDEsMy4zOTA1OTI1NTk0MjQzMDQxNTNlLTAxLC01Ljg5NjMyMDQxOTUxMDI5ODA2MWUtMDEsLTguOTU4MTU3NjA0MTA4MjcxMTEwZS0wMSw1LjQ4MzI4MTMwNDk3OTc5OTA0MmUtMDEsOS44NjY3NDUzODE1Nzk1NjY5MzFlLTAyLDEuOTcxODEwNTUxOTczNjczOTQyZS0wMSwxLjA1OTAyNzI1NDQ0MTk2NjMyNmUrMDAsLTEuMDIyNTY0MzkxMjYwNjg1NjU3ZSswMCwtOC41NTI0MDQ1NzI1MDg2NDE3MjJlLTAxLDEuMjU3MjE5NjUwODI4OTk0MTE3ZSswMCwtMS40ODI4ODMzNTc1NzQwNDI1NDllKzAwLC0xLjMwOTQxMjE0NjMzMTAxNDIxNWUrMDAsOC4xNzg2MTgzMTE4NDk5NTc4MDBlLTAxLDIuMzgyMDAxOTIwMjIwMzg2MjYwZS0wMSwxLjA1MjMyMTM3MDU5Mjc1ODUxNWUtMDEsLTkuMTY1OTQwODEwMDM4MzE4NTY1ZS0wMiwzLjEyNjc1NDcwMjc1Njk0ODExMmUtMDIsLTkuMjExMjExNDY5MTk1NTkxODA2ZS0wMg0KNC40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjMwMDAwMDAwMDAwMDAwMDA0NGUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDEuMzU1NDQyNzAyNTk0NDE4MjM2ZSswMCwtMy45ODE0ODEyODc1MDA3NTEwMzJlLTAxLC0xLjYxMzczNTM2Mjc3Nzc5MTcyNmUtMDEsMS43OTQ0NDg4MDUyMjUwNzM1NTFlKzAwLDIuNzUwOTcwMjAyOTgzNTgwMDk2ZS0wMiwyLjIzMjAxNjM4OTUyNTE3NzY2OWUrMDAsLTEuMDQ5Nzk3MDEwMTg5NTM1NTU3ZS0wMSwxLjM2NzQxNDk4MjQ2MDE1ODQ2OGUrMDAsLTEuNjU1MzQ0MDM4MzA5Njc3ODAxZSswMCwxLjUzNjQ0NDYwODE1NjY2Mzc4M2UtMDEsLTEuNTg0NDczNTYzMTUwOTM1NDYwZSswMCw4LjQ0NDU0MzA2NjA0NTg2MzEzM2UtMDEsLTEuMjEyODY3ODE2MjA5MDI0NzI5ZSswMCwyLjgzNzY5NTU0MzgzMzQ1NTAxNGUtMDEsLTIuODIxOTU4NzY2OTA0MzUxMTAxZS0wMSwtMS4xNTgyMDMxODUxODQwMjg4NzJlKzAwLC0xLjYxOTM1OTk4Mjg5NzU0MjQ2MGUrMDAsLTUuMTEwNDA0NjM1ODAxMDk3OTM5ZS0wMSwxLjc0MDYyOTQ0NTg5NTMzMDg2MmUrMDAsLTIuOTM0ODUwNTQ4ODkzNzc0ODM1ZS0wMSw5LjE3MjIxNTQyMTE1ODU2MDQ3OGUtMDEsLTUuNzA0Mjg2NzY2MjE4ODE0ODY0ZS0wMiw4Ljc2NzI2NzczNjkwNDUyMzc2N2UtMDEsLTEuODI2OTExMzc4MzA0NTE3NjY0ZSswMCwtNC4wMzE4ODMwNjg0OTUzMzMyODllLTAxLDkuNDk0MDU1MjM3OTMyMTg3NDE5ZS0wMSwtMS42MzI1NDk0ODgzMzE3ODczMTNlLTAxLC04LjY0NTUyODI3MTEwNDcxMzIyNWUtMDIsLTQuMzA0NjE5MTE4ODU3OTI5Njk0ZS0wMSwxLjE0OTM3OTM4MzM2NzEyMzk3NWUrMDAsMi45NzUxNDM1Mzk1NDk0NTkwOTNlLTAxLDQuNDAyMjI3NjE3NTM0Nzk3MTMzZS0wMiw2LjQzMDU0NTQ1MzM5MjkyNzM4MGUtMDEsNS44ODIyNDkyOTExNzkzNjY2NzllLTAxLDIuMTI1ODcwNDY0Mzc1MzY1OTIwZS0wMSwxLjU0NzAzMTQ5Njk5MDg0NDUyNGUrMDAsLTYuMDI4NzUzMzYzOTExOTAzOTczZS0wMiwyLjc4MDgxMDQ3OTY3OTQzOTcyOGUtMDEsLTYuNDI5NTI1NTMzNTI4OTA0NzY4ZS0wMSwxLjUwMTE1MjI3MDA2MTI5MTk4MmUtMDENCjUuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwzLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMDAwMDAwMDAwMDAwMDAwMTExZS0wMSwxLjU4Nzc2MTUyMzc0NTM2NzQ5OGUrMDAsLTYuNDMyNTc2MDE3ODg3Mzg4MDg3ZS0wMSwtMS4xMzM1OTI4MjU2Mzg0NTg4NjdlKzAwLDkuOTY3NTk2NDI4MTk4MTU1NTAwZS0wMSwtMS40ODc2NjE1MjIzMzY3OTI1NTJlLTAxLDkuNjAwNDIwNDk2OTc3MDAxMDA2ZS0wMiwtNC41MTEzMzAzNjkzMzM0ODEzNjBlLTAyLDcuOTEyMTcyMzkyOTUzNTA3ODgyZS0wMiw4LjUwNTMwNjgzNTIzNDM4MTkxM2UtMDEsLTguMzkxMjQxOTA1OTkyNzM2NzgzZS0wMSwtMS4wMTE3NzQwODQxMDU0ODg1MjVlKzAwLDguNDk2ODEzNzAzNzcwNzY2OTQ2ZS0wMiwtMS42MDY0Mzk2ODk0NDk4MzI3MzFlKzAwLC0xLjM3MzA1MzUzNjA0MTkyODQ4MGUrMDAsMS44NjY2ODMxNDgzMzE2MjcwNzNlKzAwLDcuNTc0NjgzMzAwNjE0MDM5MDUwZS0wMSwtMS4wMDU2NDcxODY5MDE0NTM4MjdlLTAyLDEuMjM4MDA2OTM1OTU4NDM5ODAzZSswMCwtMS4wNDA1OTkyMzAwODUxNDQ5ODhlKzAwLC0zLjE1NjAzMTIzMzg1ODU4MjE5N2UtMDEsNi4yMzQ1MzYwOTQyNDM4MjQzNzhlLTAxLDguOTA2NzE2ODE0MzEzOTQ3NDYxZS0wMSw1LjEyOTE2ODQ2ODI3Nzc2Mzg0OGUtMDEsLTIuNTQxMjM4ODA3Njg4MjI0NjMyZSswMCwtOS42ODA4MjExNzY2NDU3Nzk2ODBlLTAxLDQuNzcwNjgwOTIzNTY4NjUyNTg3ZS0wMSwtMy41NTk1MTQ5MzA0NjgwNjM0NDNlLTAxLDIuNTQwMjMxNjIwNzU5MTcxNTI3ZSswMCw5LjI2NTU4MzAwOTY3MDk2NDU5OGUtMDEsNS41ODA4MTg4MDYxODY2NTgxNTRlLTAxLC0xLjExNjk0OTU1Mzc0NjcyMzU1NmUrMDAsLTMuNTI5NjczOTYwMjkxNTU1ODM0ZS0wMiwyLjQxMjAzOTY0MjE4OTUyNTE1N2UtMDEsMS4xMjc3ODM2MzAxMjc4MDIzNjFlKzAwLDguODExMzEwOTcwOTk2MzIzMzIyZS0wMSwxLjAzMjk4OTE5NDUxOTk0NTY0MmUrMDAsLTkuMjM5MTIwMTU4MTAwMDIwNDA4ZS0wMSwxLjQxMjE1MTY5ODI5ODYzMDg1M2UrMDAsLTEuMzgwNDMwNzUyMzA3MjY5MTkzZSswMCwtNS4zNTkxNDU2MTY2NjE2MTgwMzllLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsNC4zMDc3MTEzNDk0NTY0MTQ1NDBlLTAxLC0xLjQ5ODkxNTkxNzMzMTM5MzE3N2UtMDEsLTEuMDA2MDM2ODU3OTIwMzkxNTQ3ZSswMCwtOC4yMTU0OTgyNTYwMzEzMjYxMDhlLTAxLC0xLjU0ODI1NDMyMjg0OTA0MjQwOGUrMDAsNS4zMTk3NDYzOTAwNzE5MTMzMDBlLTAxLDEuMjYwNTY4ODQ1MDQyMTQ5Mjc3ZSswMCwtMS4wMDM5MzUwMzQwMTM2NjAxODhlLTAxLC00LjAwMzQ4ODE1MDEzNDIzMzk4MGUtMDEsLTEuNDcyMzIyOTI4NDY2NDg5NjAwZSswMCw5LjEzMjAxOTI0MjUyMTc3NjEwM2UtMDEsMi4yMTEzMDQzMzMyMzk0OTMwNDdlKzAwLC0xLjc5NzQ1NTgwNDM2Njg5NzU1OGUrMDAsLTEuMDYzNDMyOTM4MTU0NjA2ODIyZSswMCwtNi43OTU5MzA0MjU0NDE0NDA5OTJlLTAxLC01LjY0MzE3OTA5NjgyNDg4OTYwN2UtMDEsMi4yNzM0NTk1MDE0MzQ4MDk5NjBlLTAxLDEuNjE0MjQ5NTQ3MjgwMjI3NDA0ZSswMCwxLjAwODU5NzI4Njg2MDEwMzYzN2UrMDAsNS4yNzU5NzM4Mjc3NDMxNTg5MjhlLTAxLC03LjIzOTI4NzA0MDU4NjAyMTAxNmUtMDEsLTEuMTE5NjI4MjMzNjgwNDU0Mzg4ZSswMCwtNy45Njc3NTMwNjMwNjMwMDg5MDBlLTAxLDEuNTQ4MDY2ODAxMzc4NzM4NjQ0ZSswMCwtNi4xNzQzMzAxNDU3OTAxMDcxNjZlLTAyLC00LjQ2ODM2MjUzNjYyNjIxMTk2N2UtMDEsLTEuODM3NTU3MzAyNDk5OTIyNTUxZS0wMSw4LjI0NjE4MjE5NjM4NDY3NzA4OGUtMDEsLTEuMzEyODQ5Njc0NTQ5NzkxNzM0ZSswMCwxLjQxNDg3NDEzNTkyMjQyMjM5M2UrMDAsMS41NjQ3NjI1Njk0NjI5ODk2MzllLTAxLC0yLjE2MzQzOTc4Mjk1NzI2MTAyNmUtMDEsNC40Mjg0NjExMzc0NjczODk4OTZlLTAxLDIuMTgzOTcwNzMxMjk5MzcwMzA1ZS0wMSwtMy40NDE5NjQ1NjQ2NzM4MTIyODhlLTAxLC0yLjUyNzEwNjcyMDQxNjA2Njg3NmUtMDEsLTguNjg4NjI1NDY4NjU5NTIyMTIyZS0wMSw2LjU2MzkwNzUwODU5MzAyNDI5OGUtMDEsLTUuMzE5OTM4MDk0MTExNjE4MTEwZS0wMSwtOS41NjI1ODQyMjQzMjI4Mjc2MjBlLTAxDQo0LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMi4yOTk5OTk5OTk5OTk5OTk4MjJlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsMS42NTg2MzUyMjY1MzUzNzMyMDhlLTAxLDEuMzI5MTQxMjgyNzQ1NTUzMzIxZSswMCwtNC44MzQ0NjIzNzc5ODE5NjE0ODllLTAyLC02LjA4MTAxMjU2OTUxNjg5OTI4MGUtMDEsNC4wMzg5NjAyMDgzNTk3MzgxMjRlLTAxLDEuOTM2NzEyNDYyNDAyNTUyMDE1ZSswMCwtMS40NTE5MDU1Mjk0MzE3NDczMzNlKzAwLDMuODIyMDI3ODc3ODUyOTM1OTYyZS0wMSwyLjA1MDg2NjI1MjMxODUzODA4NWUtMDEsMS4xNjE1MzM4MDM1NTkxMTcxNzNlKzAwLDkuOTA5MDkxNzM2ODQ4NDUyMTI1ZS0wMSwtMS44NjcwOTExMTgwOTc3OTIyNjhlLTAxLC0xLjY4NDUxNzI1NTQyNDg4Mjg0MmUrMDAsOC4wNjU2Mzc2Nzg5NjI1OTYwOTFlLTAxLC04LjM1MTkyNjkwMTkxNDgzMTIyNWUtMDEsLTkuNDY3NDA0MTA5NTcxODk1MjY1ZS0wMSwxLjE0ODM1MDU4MDY5MTEyNjI3N2UrMDAsLTkuMTA4NTAzNzc2Mzg2NTI1MDg2ZS0wMSwxLjQwMjg0NDc0MDEwMDI0MzI5M2UrMDAsMy4zNTg0NDcyMTQwNTMxMzAxODFlLTAxLDMuMTkxMTg0MDAwODYyODIzOTQ0ZS0wMSwzLjA3MjY0NzgwNTA1NTkxMDI4NmUtMDEsLTEuNjM4NDIzNjI1NzQxNzkyMTIyZSswMCwtMS43NzYzODg2MTYzNDY1NzU4NTVlKzAwLDIuMTU1NTMwNTM3ODg2ODQ4MDY0ZS0wMSw1LjY4MDA3MzU5MjI2NDIwMDk0M2UtMDEsOC4yNjExMDMyMTU2MjAxMDExMzdlLTAyLC04LjIxNTM0NTE3MDE5NTI3NTEwNGUtMDEsMS44OTIyMTAzODgyMTk0NzM2NTVlLTAyLC04LjIwMzQxNTMxNDU0ODQxNTEwNWUtMDIsLTkuNTcxNTgwOTgyNzU0MTAzMTg0ZS0wMSwxLjAxMzk3MjE1NDExMjE2MTM1MGUrMDAsLTEuNzMwMjc2MDYxNTUwMDg1ODQyZSswMCw1Ljg4NzQyNDA2ODA3NTA2NDQ2NWUtMDEsMy44NDMyMzQwNTIxMTI0NTMwNTllLTAxLDEuMDA5NzExODU0ODExNzE0MzI3ZSswMCwtMS4wMDUzMTE4NzIzNDg4NTg3NzBlKzAwLDEuMDE0MDcxNDY2NjgyMTEwMDQwZS0wMSwyLjE3MTE2NDk0OTMxODE2NTk0OWUrMDAsNi42MjA3NDI4ODk5OTcwNjMyODVlLTAxDQo0LjQwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsMS4wMDU4MTIwODcyODk2MzE4NjhlLTAxLDUuMzkxNjEyNzQxMTQxOTY1NjQ4ZS0wMSw4LjYxNzY4NDIzODAxMjAwMjIyOWUtMDIsMi4xOTA4OTgwMTMyMzk4NDAxMjVlKzAwLDkuODM2MzYxOTU3ODkxNzk0OTA1ZS0wMSwtOC41NjE0OTU0MjMwNDk3MDg2NzVlLTAyLDIuNTIzMzE0MzEzODQ1MjEyNDMxZS0wMSwtMy45MDc5Nzk5NjA4MTAxMzU2NTZlLTAxLDEuMjA5ODUwMTI2NDEwMzA0OTgyZSswMCwtMS40MDYxMDQ3NzEzOTEwMTA4NjZlKzAwLC0xLjYwNDczODUyOTg2MDk4NzA4NGUrMDAsMS40NTg3MTQ3NDk2NzU5OTM1NzJlKzAwLDIuMTUzMTE5NzkyNTcwNTgyNzI1ZSswMCw0LjY4MzA0OTA3Njg5NTkxNzA5NmUtMDEsMS4xMjczNzk0MTIzNTczNzI1NzNlLTAxLDYuNTcyNjc2OTAzMDQ3NzcyNzQ1ZS0wMSwtNi40NzA1MzUyNjM4Mjc1OTI1ODdlLTAxLDEuNzEyNDM1NDUxNTIyMTI0ODk2ZS0wMSwzLjg5MDg3MDU4NTYyMTUwMzExOWUtMDIsNi4yNjU2NDI1MDc0NTM2MDU5NThlLTAxLC0xLjU1Nzk5ODUyODE4MzM5NjM0N2UrMDAsLTUuMDcwMzQ3Njk3NjUzMzc0NTYzZS0wMSw4LjQ0OTk1NjAzMDAwODM3MjAzMmUtMDEsLTYuNzU1OTM4Mjc2MzAwNjMwMzc0ZS0wMSwtOS45MzM2MTM3NTQyMzEzNTQwNjVlLTAxLDIuMDQyMDcyMTQ5ODI2OTU0MDY0ZSswMCwzLjgxMTgwMDAxNzk0MDAzNjE3M2UtMDIsLTUuNzg5MTgxMzk5NDMyMDc4NDM0ZS0wMSwtMS42OTIzNzA0Mzc0NzQxMDg0MjRlKzAwLDcuMjkzNDYzNDYyODA0MjYxNjEwZS0wMSw2Ljk5MTM2MTUzNzE4NjkzNzUzNmUtMDEsLTIuOTg3NTk2MDA1Njk5MzU5NDU4ZS0wMSwtMS4xMDIyMzAxOTA5MDcwOTA2MjNlKzAwLC0yLjQ1NDk0MjM2NDIzNzkwMzYxNWUtMDIsLTguMzU4NTYwNjc0ODE2MjEzMzQzZS0wMSwtOS40MjA5MzU4ODg3MzExNTg5NDdlLTAxLC0xLjAzMjEyNzUxNDYxNzA3NTgwM2UtMDEsLTEuMDUxMzkwMzk4NjYwMDY0NTYyZSswMCwyLjQ2NjQ4OTU1MjUyNDQ2MTc4MWUtMDEsNi4wNzk5MjUwOTQwNjM5NzI2MzVlLTAxDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNjAwMDAwMDAwMDAwMDAwMDg5ZSswMCw1Ljk5OTk5OTk5OTk5OTk5OTc3OGUtMDEsLTguMzk2MzI0NDcxNzMxOTE0MDk2ZS0wMSwtMS4zNjgyNDUwOTUzMzgzOTA2NzFlKzAwLDEuNTYxMjc5NTk4OTU1ODA3MDM1ZSswMCwtOS40MDI3MDIzNTk1NzIwNDgyNTJlLTAxLC02LjU5OTQyNzA1MTAyMzM3NjU2N2UtMDEsMi4xMzAxNzE2NzQyOTg4NzM1NTJlLTAxLDUuOTkzNjkzNzI1MjIyOTcwNTAzZS0wMSwtMi41NjMxNjg5MzY4OTY0Mjc3NzRlLTAxLDQuNjA3OTQzMjc3MDEyNTU1NTcyZS0wMSwtNC4wMDk4NjE1Nzg5NjQwMTAxODdlLTAxLC05LjcxMTcwNjY0ODI0MzkwNzM5MmUtMDEsMS40MjYzMTY4NjA3ODcwMjczNTJlKzAwLDIuNDg4NDQxNjE0MzMxMTI4MDkzZSswMCwxLjY5NTk2OTUzMzAxNDE2OTMwNmUrMDAsMS40MTgwNjYzOTE1MzQ1NDQ1NTdlLTAxLDEuODMzNDM1MzYxODE1Njc4NDU1ZSswMCwzLjU1NzAzNTE1NzIzOTg0NDUzNmUtMDEsLTQuNzcyODYyNzA0MDMyMjkzNTEzZS0wMSw0LjY2Mzc5NTc0MzgxOTc4ODU2NGUtMDEsLTkuNDM5MjUwNjQxMTE4NDk2MjEwZS0wMiwtOS44MzExODE4Mzc0NTcwNzY5NjZlLTAxLC04Ljk4MzIxOTcxNDMyMDE1OTc1NGUtMDEsOC4wMjA1MTczODc0MDUxNTk0MDRlLTAxLC0xLjg0NjUzMTk4MTY2NDY3MzAyOGUrMDAsNi4wNDEzNjc0MDQ0MjY4NDE3MjVlLTAxLC0xLjYyOTU4MzYwMjc0ODQzODI3NmUrMDAsLTIuMTIxMTc2NDQ0OTAyNDM1OTU0ZSswMCwtMS44Mzg4NDY2MDM3NTg0OTg1MTBlKzAwLDEuOTY2NzYzOTcxOTM0NzM5ODQxZSswMCwtMS45NjIzMzk2NDk0MzU0MjAwNTNlLTAxLDguNjU4MzE4MDE2NTQxOTA5MDc5ZS0wMiwxLjQxOTI1NTA0NTkxMDk1MTE5NmUrMDAsOS4zNDE3OTc0ODQ5OTcyNDg0OTFlLTAxLC0xLjM5MTUwNTI2OTQwNDIxOTU5MWUrMDAsOC42OTAwNjM0MjgxODc2MTEwMTdlLTAxLDEuODQxODEyNjQ3MDM1NDYyODgwZS0wMSwtMy40MTY3ODA5NzU5NTg4MDU4MTBlLTAxLDIuNDI5MDkxNDEzNzc4MDM4ODA1ZS0wMiwxLjI3OTgxMjAyMDYyODAyMTkwN2UrMDAsLTguODU5NjY0ODIwNDA5NTI4NTE4ZS0wMQ0KNS4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDMuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwxLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsNC4wMDAwMDAwMDAwMDAwMDAyMjJlLTAxLDQuMDA4ODU2NzkxMDQxMjExNTA5ZS0wMSwtOS42NTcyMzY1MzI5MDgzNDU1MjJlLTAzLC0xLjc5NzE2NDYxNTM5NTYxODQ0OGUrMDAsLTguMDIyNTMxNzE3MzA4MTA3ODc5ZS0wMSwxLjkzMjEzNTUzMjMzNjk2NDYxMmUtMDEsMS4yOTczNDIwODkwOTI4OTA2MTZlKzAwLDEuMDAxMzMxMDE3MzQ2NzI5NTc5ZSswMCw1Ljk3MjEyNTA0NDAzNDI0OTkzMGUtMDEsLTguMTUyNzU2NjExMzY0NTg1NTE1ZS0wMSwxLjgwMTIxMzk5MDgwODUzNDk0OGUrMDAsMi4xNTI0MDQ2NzYzOTYxMTQ2NThlLTAxLC0xLjAwNjM2NTUyMTY3ODU1MDMxMmUrMDAsLTEuODI5MDQ5ODA4NTY5NTEwMDQ5ZS0wMSw4Ljk2MjQ4NDI1MzU2MTU5MzM5NWUtMDEsNy42MTc0OTgzMTgxNTgxMDY5NTZlLTAzLDguODY4NjQ2ODY1ODI3NjA5NjM4ZS0wMSwxLjEwMzY5Mzk1NzQ2MjE1MDI2NmUrMDAsNC4wMDUzMDY4NDU5ODcwNjE2NTllLTAxLC04LjU3NzAyNjIzMDQ2ODk0MDQxNWUtMDEsMS4zNTQ1NDY2MzE4OTk4MDUzNDJlLTAxLDQuNTE2NTg1NTkzODgzMTAwMzgwZS0wMiwxLjg1OTM0NjMzMzg1MTYyODI4NmUrMDAsLTEuNjI2MzIxOTM3ODI2ODMwMTAwZSswMCwtMS4zNDgyMjQ1MTA5NDM1NDA2MjJlLTAxLC01Ljg0MDkzNTQ2Nzk0OTE5MzE2MWUtMDEsMy4zNTEwNTYyMDE5NTk5ODg3NjdlLTAxLC0yLjQzNzU2NDM1OTE5OTM1NjEwMWUrMDAsMS4xMTQ5MjQ1NTk0OTAyNzk5MDllKzAwLDEuMzc0ODQ4NzMzNTUzMzY1NjYyZS0wMiwtMS44NDQ3MDExNjM2MjgwNDYxNDhlKzAwLC0zLjYxMTEzMTM0NzM5ODY2MTE1MWUtMDEsNi4wODk2MjM0MTY1NDUyNDIzMDdlLTAxLC0xLjU5MTQ0Nzg3NTQ1ODAzMTQ1OGUrMDAsMy4yMjIyMTY0NDMxNTU2OTkxNzJlLTAzLC0xLjA1NzQ3MzY0NzgwMTUzMDA4MWUrMDAsLTUuNTU5ODUwMzE4Nzg5NjczMDYzZS0wMSwyLjY3MzgzODI2NzQ2MzY5MzExNmUtMDIsMS44MzQ1MDI1MzU4MTU3NjI5NDdlLTAxLC00LjcwNzQyNDk4MTgyNzI3MjMxNGUtMDEsMi43Mjc5NjM4OTUzMDI2NDEzODRlLTAxDQo0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjk5OTk5OTk5OTk5OTk5OTg4OWUtMDEsOC4xNzk3NzYwNzI1NDgwNTcyNzVlLTAxLC0yLjc4OTE0Mjc1MTAzMjM5Nzk0OWUtMDEsMS40MzE1Njc3NTc0NDkyOTA4NzllKzAwLDEuNDYyMjE0MTcwNzgwNDE5NDg3ZSswMCwtNC4yODcwMjA2NTU4NTgyODg1MDllLTAxLC02LjM3ODQwNTU2NDczNTg0Mjg1OWUtMDEsLTEuNjY0MTcyOTg1MTY2MTczNTEzZSswMCwtMS4yNjU2OTMzMTYzOTM4OTg1MzhlLTAxLC0zLjYzNDM3NzgwMTE2MDUxMzc4OGUtMDEsNy43OTA1MTIyMDEzMjk5MTU1MDllLTAxLC0xLjUwOTY2MTYwNjA2ODI5ODgwMGUrMDAsLTIuNzczOTEzOTE3NDMxMDk4Mzg2ZS0wMSw5LjY4NzQ0MzkzMTExMTQ1MzUyMWUtMDEsLTcuMzAzNTcwOTU1NTc5NTk5MTIyZS0wMSwtNy42MjM2MTUzNjcyNzYwOTMxMjRlLTAxLC0xLjQ0Njk0MDMzNDc1NTgwODUyMmUrMDAsMi42MjA1NzM4NDYwMTgyMzkyODNlKzAwLC03LjQ3NDczMTc4MDY1Mzc5Mzg0NGUtMDEsLTEuMzAwMzQ2ODMyMjE4MzM5MTMzZSswMCwtOC4wMzg1MDQwNDAzMTUxOTk3MTdlLTAxLC03Ljc0Mjk1MDgwNDg2ODA0NTEwMGUtMDEsLTIuNjkzODk3Nzg0NTEyNDAyOTE1ZS0wMSw4LjI1MzcyMjMyMDg3NTE0NzU2N2UtMDEsLTIuOTgzMjMxNjg5OTU4MzM3MjA3ZS0wMSwtOS4yMjgyMzMxNDk5NjgyNzkwMzdlLTAxLC0xLjQ1MTMzODQ5ODE5MTAyNTExN2UrMDAsMi4xODU3MzU4MjE5ODcxMzcxNDVlLTAyLDQuMjUzOTA3NDAyOTc5MDcyMTYxZS0wMiwxLjUzMDkzMjM1MTAyODgyNDYzNGUrMDAsOS4yNDQ3NzM1NDY5ODA4NTg0MDNlLTAyLC05LjkwMDgzMTEyODQwNzczNzQzNmUtMDIsLTEuMDUwNjUzODM2NTg3NDg5NTY1ZSswMCwtMy4wNTk1MjU3NTA5ODM5MTkxMDFlLTAxLC00LjM4NDc0NDU4MDM0NjA2MDUxNmUtMDEsLTMuNzAxNjQxNjQ1MTM3MDI1NDI3ZS0wMSwtOS41OTI1NTM5MjY0MDU4ODIzMzZlLTAxLDUuMzgzMjk2MDMyNzYxNzY4NDkwZS0wMSwtMS40MjQ0NTQxNzUwOTM2OTM3MDllLTAxLC0yLjAwMzUzNDgwMDA0OTg3Mzk5OGUtMDEsLTEuNzE0MDQ2MTE2MDQ4OTk2MzcxZSswMA0KNS4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDMuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCwxLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMi4wMDAwMDAwMDAwMDAwMDAxMTFlLTAxLDQuOTM2NDQwODc1MjQ4NjM4ODM4ZS0wMSw0Ljg3MDE1MzI1OTgwMzc5NDQzMmUtMDEsLTguMzkxMjk0MDI4NDIyMTM3MTE5ZS0wMSw5LjkwMTIxMzgzODc5MTkzNjgzOWUtMDEsLTEuMzY0NzU4MjMwMDgyNDMyMzU1ZSswMCwtMi4xODY5OTA4Nzg5MDc5ODc0NzZlLTAyLC0yLjcxMjA3MzM5ODkwMTYzODc4OGUtMDEsLTEuMzE3MTc0Nzg4ODA1Nzk0MzA1ZSswMCwxLjg5NzAyNjEyMDc5OTk1NzUyN2UtMDEsMS43MDI1NzAxNTIyNDE3OTEzMTNlKzAwLDYuNzYzNDIzMDA2NjkxOTc2NDkxZS0wMiwtNC42MzAyMTc1NDEwOTA1MDk0MjVlLTAxLDQuNDcwMjQxNTY4ODU2NzgyNTg4ZS0wMSwxLjA1NzE5OTk1NDY3MTU0OTM2OWUtMDEsMi43NzYyMTMxNjI1NTAxNDg2MzNlLTAyLC00LjI1NTQyMjEyNzcxNDQ4MDQ3NGUtMDEsMS40MjE5NzU1NTkyOTI0NjQ3NzVlKzAwLDQuNTYzNjMzNjM0ODA3ODUzNzc4ZS0wMSwtNS4yODY3MDY1ODkzNTQ4ODU5MTBlLTAxLC0xLjA4MDAzODM2NzgwOTU3OTI5MmUtMDEsLTcuNDA4NjY3MDQyMDQwNzI2MzQ3ZS0wMSwtNi4wODI5MTE1MDA4MTQ5NTAzNTZlLTAxLC02LjQwNzI1NzI0MTkwMTk5MDE5N2UtMDEsLTEuMTM0MzExNTkzNzIyMjI3NDUxZSswMCw3Ljc3Mjc2OTYzNzY3OTU1NDA4OWUtMDEsLTIuOTEwNDE0NjMyNzMwMjU3Njg5ZS0wMSw1LjU0MTI3NTc4MzI2NzY5NzMxOWUtMDEsLTYuNzAxMjU4OTc3MjcyOTY0NzEyZS0wMSwtNi4wMzYyNDk0MzkyMzM4NjUwMzNlLTAyLC03LjExMDQwNTk2NzkxMTExMjAxM2UtMDEsNy4xOTY2ODE3MDUzNzMzMTY3NTFlLTAxLC0yLjQ4NDE5MzA2NzA1MDM4MjI4NmUtMDEsLTcuMzA4NzM1ODU5NTEzODU4NTEzZS0wMSwtMS42NDE3MDMyMjg4MDk3ODQxNDNlKzAwLDIuNzU2NjY1NDkzNDA3NzQzOTE3ZS0wMSwtNy4wODM4NTA1MjMzODEwNzExMjllLTAxLC0xLjU3NzkyMTcxMjA5OTUxNzM4NWUtMDIsLTQuOTE3MzAxMDgwMTM1Mjc2MjI2ZS0wMSw5LjU0MTg5NTgwODk4NzY0OTMzMGUtMDEsNS40NDE0NDc1MjM1ODAwNzk2NTllLTAxDQo0LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4yMDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsNC40NzIxMjA4NzQ1NDgzMTQ4NjJlLTAxLC02LjE2MTIxMTIzMzIzNDc5MjM2MmUtMDEsNC42NjI5MDA0MzU1MDE4OTQ5MjVlLTAxLDEuNzE0ODMxNjA4Njc2MDQyODk2ZSswMCwtOC4zMjE4NjAzNDE1MDA2MTk4MThlLTAxLDEuNzIzMzkxMzkyMjkxODg3ODE0ZS0wMSwtMS42NDkyMTY5NzQ0MTcxMzIxMDllKzAwLDEuMzk4NTYyMDkyMTI1NTM1NTA1ZSswMCwtMy45NzkxMjA5ODU5MDg0MTQyMzJlLTAxLDcuODI1Nzg4ODA4NDE5Nzc0NjQ1ZS0wMSwtMS43MjMyMjgyNTA3MTYzMjMwMThlKzAwLDEuNzk3NTM5Mzg3MTI1OTA0NjY0ZSswMCwtMy41Njg3MTUyODAyNTU5ODQ2MTJlLTAxLDUuNDU2NTczMjM0NzAwMjc0ODg4ZS0wMSwxLjUwODE4MjA2MzMyNTkzNzk2MGUtMDEsLTIuNTU0NzA3ODYxODc3Njk0MTY0ZS0wMSwxLjY4NTc5MjMwMjY1OTMwMzU3NmUrMDAsLTEuNjQ4MDQ2MjA2MzY2MTc5ODIyZSswMCwyLjk4NzEzNjU5OTkyMDA4OTM5N2UtMDEsOS4xMDY0NTY3MjIyOTk3MDI4MjJlLTAxLC0yLjk4NTYxMjE2MzYzNjYyNjQ1OWUtMDIsLTEuMTgxNzA3ODQzNjY1OTE3OTk1ZS0wMSwtMS40MjY4NzcxMjA3MzQ2NTAzMzllLTAxLC0xLjIyNzYzNjQyMDQxMDQwNzk5MWUrMDAsMy44MTI3Mzg0MDk0OTM0NjUwNjllLTAyLDUuMTI3MTc1MjM0NzIzOTg3Mzk2ZS0wMSw2Ljg1OTkyMjc0ODA2NjA1MjQwMGUtMDIsLTIuNzIyNzYxMDExNDUwODA2MDY4ZS0wMSwtNC44OTcyNTAyMjM3MzAyNjczMDRlLTAxLC0yLjc5Mjk2NjY5Mjc4MzcyMTU2MWUtMDEsMS4yNTc3NDQyMTc0OTYwMzgyNjRlKzAwLC0yLjA4NjYzNDk3OTQyMDU0MjU0NmUrMDAsNC4wMDcxNDU2NTQ3Nzc1NDU1MjllLTAyLC0zLjI3NzU0OTE3Mjk2NDE2NzU5MGUtMDEsMS40NTU4MDc5NTE4MzY4NDM0MTdlKzAwLDUuNTQ5MjIyNTQ0MzgwMjc3MTUwZS0wMiwxLjQ4NDkyNTU5ODY5OTk1NDEwOGUrMDAsLTIuMTIzODkwMDE4MDQ1NTU5MTAzZSswMCw0LjU5NTg0OTA0ODM0MDU2MTczOGUtMDEsMi44MDA1Nzg2MDAzNzY4MDEyODZlLTAxDQo1LjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMy43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsMS4zOTA1MzM5NjcwNzM5MzgwNjBlKzAwLC0xLjY0MTM0ODYwODgyMzAyOTEzMmUrMDAsLTEuNTUwMzU4MDgxMTgzMjU3OTA4ZS0wMSw2LjYwNjAyNjE3ODY0OTI1ODg0MGUtMDIsLTQuOTU3OTU0OTQ1NDUyMDkzMjU0ZS0wMSwxLjIxNjU3NzcxMzc0Mjk0MDMyNWUrMDAsLTMuMzg2ODIxODU0NDUzOTc1NzY2ZS0wMSwyLjAzNDc2MjU0NDAyMTE1MzY0MWUrMDAsMS4wNTQxNzc5MDg5Mzg5MjI3MTRlKzAwLDkuNTA4MzM2OTcwMDM3OTk2MDUwZS0wMSw1LjU5Mjk4OTgxMzkwODg0Mjk3OGUtMDEsLTEuMDYzNjk1NTkxMDI1NTQ3ODkzZSswMCwtNC4zMTA5NjMzNzUxMDc1NzA5OTRlLTAxLDUuNzI3NTEzNjY4NTcyMTU4Mzc4ZS0wMSw2Ljc3NTU3MDMzNTg3NzE3MTI4MGUtMDEsMS4zMDcxODM4NDUwODEyNTc0MDFlKzAwLC00LjY3NDQxMDA5NjI1OTA2MzQ1MmUtMDEsLTguNjAxNTMzODQ5MjQ2NjMyMDAyZS0wMSw4LjU5MTA0MTkyNzg1NTMwNjI5M2UtMDEsLTguMDk2MjY1NzYwNDAxMTI2Nzc2ZS0wMSw4LjczMzExODM2MDcwNDEyMTg0MWUtMDEsMS4xOTk3MzYxNzY0MTUwMzc4MjVlKzAwLDQuNTYxNTMwMzU4MjcwNTUzNTMxZS0wMSwtMy41NzU3OTAzMTk2ODU5NzkxNTdlLTAxLDQuMTA4MjIyNjE0Mzg3OTU2NzQ1ZS0wMiw1LjkzNDY1OTE5NjAzMjM5MTMzN2UtMDEsMS4wMTg1NTE4NzEyMDczNDYzNzRlLTAyLDIuMTk4Mjk2MzM4NjcwNDkyNTY3ZSswMCwtOS45MDY3MDkzMDYyNzE0OTE3MTFlLTAxLC0xLjAwMjY2ODU4NzM2OTc5MDkyMGUrMDAsLTkuNzY4OTUzODY3MzUzMjUxNjYzZS0wMSwtNS44OTU3OTkyMjU0NTIxNTYyODllLTAxLC0yLjE3ODkzMTUyMDE5NDkwOTMyMWUrMDAsLTYuMjk2NTA0MjY5NDAxODEyNTE1ZS0wMSwtNi41MzI4NDcwMTkyNzg4OTAxMTFlLTAxLDcuODUxNDAyNTE3NDE3NjI4NTY4ZS0wMiw0LjE3ODAwNTgzMjA2MDgxNDMyOWUtMDEsLTEuMjQwMjE2MzM2NDA3NzcwMjkyZSswMCw5LjAwMDU0MjQyNzY0MDcyMzA5OGUtMDEsMS44MDIyNDIyMjk3OTA1NDcxNTdlKzAwDQo1LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy4yOTk5OTk5OTk5OTk5OTk4MjJlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwyLjAwMDAwMDAwMDAwMDAwMDExMWUtMDEsLTIuMDgyODUxMDMwOTQ5OTYzNDMzZS0wMSwxLjU3NDM3MTIzNzQ3NTU3MTYxN2UrMDAsMS45ODk4OTQ5NDQwNTE4NzczMzVlLTAxLDEuOTg4NzMxOTE4NTk1MzkxMTEzZSswMCwxLjExNzI4MzQ2NTY4ODE5MDI1OGUrMDAsLTEuNTYzOTA0NjM0ODM5NzY2MjcyZSswMCwxLjg2MjczNzA2NjEzNTU0NTcyNGUtMDIsMS4wNTQzMjQ5NzQ5MDQwNzc3MjdlKzAwLDMuMDU0NjU4MTA0MDYxNjg4ODA2ZS0wMiwtMy42ODgzNTMwODQ1MDY2OTQ0NjhlLTAyLDEuMjY5NzY0NzUwMzE0MzAzOTE0ZSswMCwtNy4wOTg1NDE4MjE0NjEwMzk2MjVlLTAxLDEuNzUxNTYxMzI3ODIxODMzNjU4ZS0wMiwzLjIzNjI1NzY0NjA5MTE4NjgyNGUtMDEsLTMuMzM3OTA5NjAzNTM1NjQxNDc4ZS0wMSwtMi4wMTI5MTAzODc3NTM3NDc1NjBlLTAyLDcuNzUwMjMyNjMyMjQxNzAyNTU3ZS0wMSw0LjMyODM3NjIxNDk5OTkzOTQwOWUtMDEsLTguMDg3MTc1MzE5Nzk1MzM2NjU5ZS0wMSwtMS4xMDQxMjM5ODU3OTkyNjE3NDJlKzAwLC03Ljg5MTAyMTgwMjU2NjUwMjQzMGUtMDEsMS4yNDg0NTU3ODg0ODY2MDUzMTJlLTAzLC0xLjU5OTM5Nzg3NzU3MDQyODE3M2UtMDEsLTguMzE5NTc0OTMyMTcxMjQ3NTUwZS0wMSwtNS45ODE1MDQ1MjUxNjQ4NTc5NzdlLTAxLC0xLjUyMDAzOTI4NTE5MjA2MzY2MWUrMDAsNC4xNzg1MzcwMzIxNzMyNTk1NThlLTAxLC00LjAwMTg3MjUzNTE2MzI5MjIyMmUtMDIsLTEuMjU5Nzg3MzQzNDA1MjcwMjEwZSswMCwyLjg2MjA1MDQxODc3ODI4MTg1NGUtMDIsMS4zNDI2MjIwMTA1MTAzNTMyMzdlKzAwLC03LjM5OTM1ODUyOTY1MjU5NjU1MGUtMDEsMS4zMTUxMzc2NjU3MjA5NzIzNDllKzAwLC0zLjIzNDU3NDcyNDgzNDIzODI0NmUtMDEsMS45NzgyODE2Nzg0OTg2NzgxNDJlLTAxLDkuNzc1MDgwMjQyMjE4NTI4NDQ4ZS0wMiwxLjQwMTUyMzQxNjAwNTI0NTQzN2UrMDAsMS41ODQzMzg0Njc4NTUzMTcxMjNlLTAxLC0xLjE0MTkwMTQxOTIwMzg0NjU3OWUrMDAsLTEuMzEwOTcwMzcwNDQxMjEyMzQwZSswMA0KNy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS4zOTk5OTk5OTk5OTk5OTk5MTFlKzAwLC0xLjUzMjkyMTA1MzQzMDEyNzg1NmUrMDAsLTEuNzExOTcwMTY0MDk0MjIxMzE0ZSswMCw0LjYxMzUwNTg5NTU2ODQ5MjY2NWUtMDIsLTkuNTgzNzQ0ODAyMjY1NjE0NjQ4ZS0wMSwtOC4wODExNjEyOTQzNzQwOTY1MjZlLTAyLC03LjAzODU5MDM1OTkwNDQ2NjM1NGUtMDEsLTcuNzA3ODQzMDA3MDY1NjUyMjg1ZS0wMSwtNC44MDg0NTM0MDg3MjcyOTEyMTJlLTAxLDcuMDM1ODU1NTQ2NDMzODgzNDQ1ZS0wMSw5LjI5MTQ1MTQ3NzY4NjkxMDU5OGUtMDEsMy43MTE3MjU1MjY0OTAzOTIwMDJlLTAxLC05Ljg5ODIyNTQ5NTQ3MTE5MjM0OGUtMDEsNi40MzYzMTI3NTQ1MzMzODQyNTFlLTAxLDYuODg4OTY2NjY2MDc5MzIyNTA5ZS0wMSwyLjc0NjQ3MjAzNjEyNDQ0NTQ1OWUtMDEsLTYuMDM2MjA0MzYwMTkwOTA2NTU5ZS0wMSw3LjA4ODU5NTc1MzY3MTQwMjgyMmUtMDEsNC4yMjgxODU3NDY3NjY2MTQ1MTdlLTAxLC0zLjExNjg1NjU5MTU5OTEyNTk4MWUrMDAsNi40NDQ1MjAzMzQxMTA0MjI5MTBlLTAxLC0xLjkxMzc0MjY3MDg2MTUwNzA2N2UrMDAsNi42MzU2MTU3NjU5MTM4MTQ4NTZlLTAxLC0xLjU0MDcyMzk4NDI0ODM1MzA1MWUtMDEsMS4xOTM2MTE2ODA3NDkxOTgxMDFlKzAwLC05LjgxNjEyMTEyMDU5MzA1MzQ3M2UtMDIsLTguODY2MTQyNjAwNTYxMTI0MzU0ZS0wMSwtMS40NzM1MzY2NDU4Mjg0MzY1NzVlLTAxLDEuMDU5ODA2Mjk0OTMzNzc0NTQwZSswMCwyLjYyNDY2MTc4NjE1ODczODQ2M2UtMDIsLTEuMTQzMzUxNTk4NzIzNzY3ODc2ZS0wMSw3LjQzNTUzNTE1NTA4MzM2OTI2M2UtMDEsMi4xMDM1OTM2NjYyOTgxMjkxNjFlLTAxLC01LjkyNzQwNTgzMzIzMTgwNTc3NWUtMDMsMS4zNjYwNjAwNjg0MDMzMzE0OTZlKzAwLDEuNTU1MTE0MDMyMDU5MDY3NzMwZSswMCw2LjEzMzI2MjI2MzI4NzAxMTUxOGUtMDEsLTIuODU5NTkxNTE0ODUxNzI5MjQ0ZS0wMSwxLjQ5NjkxMDk5MzUyMDgyNzEyN2UrMDAsMS4xODMxMTk1NTczMzE3MDcwMzllKzAwLDcuMTg4OTcxNjU1MjgyOTE2MzczZS0wMQ0KNi40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLC0xLjIxNjA3NjU4MDc0NTg2MDg5MWUrMDAsMS40MDY3MTkwMzMwNzk2MDkyMTZlLTAxLC03LjQzNjcyMTc0NzAwODczMTAwOWUtMDEsLTEuNTkwMTIyNTE1NTQzNTkzMjk2ZS0wMSwyLjQwMDU2OTI5Mjk2NzE4NzA3NGUtMDEsMS4wMDE1OTQwODA5MDYyMzQ4NjNlLTAxLC00Ljc1MTc1MTA1ODI5MjQ4NDg5N2UtMDEsMS4yNzI5NTM3NDg5MTk5MTA3NTVlKzAwLC0xLjY5NjEzMTI2NjgzMTU0MzEzOGUrMDAsNy4zMDE4MzUzMTEyOTYxNDQyNzFlLTAxLC0xLjg1NzQ4MzI3MTU5NDUzNzk2NmUrMDAsMy44MjU5ODEzNjcyMzQ2Mjg3ODNlLTAxLC04Ljg2OTA0MzI2MjgzODc1NjEwM2UtMDEsOC43ODMwMzc1NzczMjUzMDQ0MzVlLTAxLDguNjQ1MjUyNDAwNzU5MzQ1NjQ2ZS0wMiwyLjQ3NzA2Mzc4NDY2ODI0MzA2M2UtMDEsLTEuMDE4Mjc5MzI1NTY2ODUxNDEyZSswMCwtNi41NDU3MDEzNDk5NzU4Mzg3NDVlLTAxLDIuMDcyMTczOTM0MTA5NTMzNTQ0ZS0wMSw1LjgzNTY5OTI2OTA5MzAzOTgyMGUtMDEsMi45MjkwOTYyNDE3NjM4NjEyOTdlKzAwLDIuMjI4NTgzMjMxMDM0ODY3MTYzZS0wMSw5Ljc2MDM3NTI1MzY4OTI1NzQwMmUtMDEsLTEuNTU2OTMzOTMyNTA5MjYwNTk5ZSswMCwtMS4zMjk4OTE4NjEzMzQwNjI4OTdlKzAwLC0zLjU1NDk0Nzc0NjA4NDUyMDI0NGUtMDEsLTEuMTk3NDI3Njk1NjM4NTY2MzI1ZSswMCwxLjQ4NjM5OTI1MzQ2NjM4NDU3M2UrMDAsLTQuMTAyMTg2OTI3ODAzMjg3NDIwZS0wMSwxLjM4MjE4MTg4ODM5MzEzODQ5MWUrMDAsMS40ODY3ODI0NzQwODU2MzA4MDFlKzAwLDQuMjc3OTcxOTg4MzU2Njg5NDAzZS0wMiw1LjAxNzk5NzUzODA3NjM4OTcwN2UtMDEsLTUuNjA5OTQ3MzM0MDkwMjkwMDA1ZS0wMiw1LjM4NDM3MDAwMzU0NTM4Njc1MWUtMDEsNC44MzM0MTg1MTc4MDU3MTc2MjllLTAxLC0xLjIzNjQ5NjI1ODkyMDMwNzEyM2UtMDEsNS4wNDk2OTk4MTQ2Mjg0MDMzMzhlLTAxLDEuNzIzNjk2Mjc1NjY3MjYxODAxZSswMCw3LjEzMDE2MjI5NzEwOTM3Njk5MGUtMDENCjYuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsNC45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwzLjI1Nzk5NjEzNjQwNjI1NTQwNWUtMDEsMS4yNDc2OTUyMTA0MzIxMjQxNDFlLTAxLC0xLjAxMjY3MzEyMzc2ODU5MTA4OGUrMDAsLTEuMDI3Mjk2ODc3MDc1NDYyNDY3ZSswMCwzLjIzMzU2NTMxNDgwMjU4NjEzM2UtMDEsLTEuMzY5MzkxMTI0MDQ3MTU3MjM4ZSswMCwtNy42NjMyNzU5ODk2MzU4MzE1NjRlLTAxLDEuMjgxNTExMzQwMzY0MTMzMTY3ZSswMCwxLjkxNDIyOTY5NzA2MjgxNDA5NWUrMDAsLTEuNjY1OTU2MDc2Nzk3NzE4Mzk5ZSswMCwxLjYyNjY0OTU2MjMwMTU4MTk3NWUrMDAsLTIuMTE0MzgyOTA4NDU1NTY2MjU3ZS0wMSwtMS41MDA1MDg3MDMxMzY0ODA1MTRlLTAyLC0xLjEzNDExNjMwNjQyNzMzOTYyN2UtMDEsMS4wODA1NDQxMjcwMjU0ODcxODllKzAwLC0xLjYwNzY3NjU3OTA0MzE3NzA2OGUrMDAsNC41NjE2MzYxMTM1NTEzMzM5MTVlLTAxLC05LjQ0ODcwMTk3Mzg4MDEwOTIzOWUtMDEsNS43MDc4ODUyOTM4MTU3Mzc2MTVlLTAxLDEuNTQyNzk2MzM4MjkzMDUxODUwZSswMCwtNC4xNzMyNjQxMjYyMDE2Njc0ODZlLTA0LDMuNzQxNTUwODU5NzA4MDI1NDc4ZS0wMSw0LjA5NTUxNzc4MjM3NjkxMzQ0MGUtMDEsLTcuOTk1OTM0OTk2NzA0OTAwOTMyZS0wMSwxLjUxMTYzOTM0OTg4NDMxODM2MmUrMDAsMS43MDY0NjgyNDcyNjA5ODg4OTFlKzAwLDcuMDE3ODMzNzIxMTcwMjkwMTQwZS0wMSw3LjMyODU0MzIwMDc2NDU0NjUxN2UtMDIsLTQuNjE4OTM4MTUzNTQyODQ2NDI1ZS0wMSwtNi4yNjQ5MDIyMzE0OTA4NzUzMjhlLTAxLDEuNzEwODM2NTgyNTQ2NjU1NjA0ZSswMCwxLjQxNDQxNTA0MjcyOTAyMzYzMGUrMDAsLTYuMzY2MTQ4ODc4OTU0OTQyODAyZS0wMiwtMS41Nzk5MzA1Mjk2NzExMjM2ODVlKzAwLC0yLjgzMjAxMTg2OTkwODk4NzEyM2UrMDAsLTEuMDgzNDI2NjYwMjY0Mjc5Njk1ZSswMCwtMS4zMDYyMDM5NTk5NTExOTQwMzhlLTAxLDEuNDAwNjg5MDM0NDQzMDAxNDEzZSswMCwtNi41MTY1NjIwOTA1Nzc4MDc2NjRlLTAxLDUuMDQ4MTU0NTYzNDA1MDE3MzM3ZS0wMQ0KNS41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMjk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDEuMzAzMTgwOTYxNjQ4NDMyNDQ1ZSswMCwxLjI4NTM2MzE2ODU2MDQ4MTYwNmUtMDEsLTEuNDI0NDc4Njg3ODg4NDEzMzA5ZS0wMSwtMS4zMDg3NjM1MTQyMzg2MDgwMzllKzAwLC0xLjIwMjQ3NTMwODIwNDQzMjgyNWUrMDAsNC4xNjA5OTYzNDQxNTgyMzMxNjJlLTAxLC0yLjAwOTA3NTMzMjAwOTI2NzE5MGUtMDEsMS4yMjUzMTMxNzY1MzMwMTUzODZlLTAxLC00LjcyNzc3MTU2OTYyNDcxNDEyMWUtMDIsNi42NDE0NDA0OTM1ODY1MDQ1NjhlLTAxLC03Ljg0Njg3NDExNDI5NDQ1MjAyOWUtMDEsLTMuMzU1ODA2NDM1ODMxNjY5MTU0ZS0wMSwxLjg5NjE4MjIyODYzMzE0NDAwN2UrMDAsLTcuOTk3ODYxMzgzODU3NzA3Mjg1ZS0wMSwtMi44MTU3NTQzMDgwMDEwMjExMTFlLTAxLC01Ljg5Mzg2NzAxOTc4NTY5MzQ5NWUtMDEsNC40NDc4MTM2MjQwNzI1MDE5MTVlLTAxLDEuMDIyMzkyMzIyNDQyMDY5NDU3ZSswMCwtNC45ODIxMTYxODU4NjEwOTYyODBlLTAxLC00LjMxNDE0MzQxMTA0Njg1MjM5NGUtMDEsLTIuNzg5ODE2MDUzMDMwMzAyODg5ZS0wMSw1LjI5ODMzNzgzNDc0OTU3Njg2OWUtMDEsLTcuMzkzOTUzMDI1MTAxOTUzNjI0ZS0wMSwtMy43NTk1OTk2NTk3MTI1OTEzNTdlLTAxLC0yLjM3MjE5Mzg3MTUxMzAxNTMwNmUrMDAsLTEuMzgxNzQ1MDA5NDk0OTg1MjQzZSswMCwtMS4xMjQ0Mzc1NjAxOTI4ODIxNTdlLTAxLDguOTc4NjQxNzMyMDMxMjEzOTYyZS0wMSwyLjk1MDc1NzgzMzAxODYyNDA0M2UtMDEsLTEuMDk4NzY4NDU2NjY3Mjk5NDk4ZSswMCwtMS40MDAyNTYyMDgxMjc5NDE5MzdlKzAwLDEuNzQ2ODAwOTI4OTgxNjg3NDI5ZS0wMSwtMS42NTI4MDM2NDIyNTI4NDM1OTdlKzAwLDEuMDY1OTI2ODE4NzE2ODg4ODgwZSswMCw2LjM4OTYxOTE2NTAxNzgyNjM0MWUtMDIsLTEuNjA3MzIwMTU5MjM0MDU4MDIxZSswMCwtOS42NTk1Mzg1ODg0MTg2OTY4MzZlLTAxLC03LjI0MzExMzE5MjMxMTIyNzk2NmUtMDEsLTcuNzMxOTI1MTAyMjM0Mzg3MTE1ZS0wMSwtMS40ODk5MzMwMDgyMjE0OTIzMjhlKzAwDQo2LjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMi43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDQuNTk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsLTguNzQ2NjI1MjE5ODg4NDUxOTg1ZS0wMSwtNi44NDQwMTU1NjE0MDQyNjE5MjdlLTAxLC03LjExMjg1NzU1NjEwNDM4Mjc1MGUtMDEsMS4xMjc5NTY2MjQ5MzMzODA1NThlKzAwLDEuMDQ4Mjc4MDI4MjcyMTQ1NzIzZS0wMSwtOS45MzI1NzIxNzQzNzU1MjM1MzNlLTAxLC0zLjM0NjIxNjA1OTU0MTIyMDQ3OGUtMDEsLTguNzk1NTcwOTczMTEzODQyMDYyZS0wMSwtMy4wMDAwNjY1OTAxMTc1Njk5MzFlLTAxLDguNzU1MDkxNTMxNDEzODMyMjI5ZS0wMSwyLjUyMjcwNzgwNjEyMTI1Mzc4MmUtMDEsMi4yODU2MDExODE1MjgwNjY1NzJlKzAwLDMuNzU5Mjc0MjU3Njc0ODAxNzIyZS0wMSwtOS4xMzU5NDUwOTk3NzEwNzAwNTVlLTAxLDguMDk3NDA3MzA4MTQ0NDc0MTgxZS0wMSwxLjA3OTkzMTIxNzE0MjUzNTcwNGUrMDAsMS4wOTQxNjY5OTE0NDM5NDM4MDRlKzAwLC0xLjA5NDI0MDk1MzAzNTA5MTM5MGUrMDAsLTEuNDc2Mzc0MTQ1MTQ4Mzc1MDA2ZS0wMSwxLjEzMTgxMTk1NjgyODQ1MjU5MmUrMDAsLTEuNjg0NzI4OTU4ODczOTQxMTQwZSswMCwtNC45OTQxNjc2MTAyMjAzODMwMjVlLTAxLC0xLjQyNjkzNzY4NTQyNjk5MTUwOWUrMDAsLTkuMzI1NzAyMjk4OTcwMTMyMTQyZS0wMSwtMS4wMTI0NTcxNTI3NDM4MDYyMTBlKzAwLDEuMjUwNTY5ODMyNTQzNDM0OTAxZSswMCwtMi4zNDUzODAzNDkwODc1MDM4NjhlLTAxLC04LjYzMzU1NTgxMzQxNzgyNTg1M2UtMDEsLTEuMDM1NjA1NzMxMzg0NDk0NjMyZSswMCwxLjQxNjY3MTY0ODcxNTMwMzA0NWUtMDEsLTEuMTEzNTYyNzM0MDY2NzEwNzc0ZS0wMiwxLjM0NDA3NDM3NDY3MzQyNjk0MWUrMDAsNS4wMDAxNjY5NTg1NzMwMjU3MzNlLTAxLC0xLjQzMTc5Nzc3ODA2NTAzNzQ5NmUrMDAsLTYuMjg5ODA3MDc1OTEyNjgzMzk4ZS0wMSwxLjA3MDA3MjUxMjA3MDk3NzA4OWUrMDAsLTYuMjEwODI2OTc3MDEzNzczNjIwZS0wMSwxLjczNDU3MjE3NDkyMzcwOTA3NmUrMDAsLTEuMDk4Mjg5NDMxMzI0NzQ2NjU3ZSswMCw1LjcyNjEzMzUzMDQwNzkwMTk2MWUtMDENCjUuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwyLjc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsNC41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMzAwMDAwMDAwMDAwMDAwMDQ0ZSswMCwtOC42MTIxNTU1MzM5ODY0MTUzMTJlLTAxLC01LjA5NTk1MTMyOTQ2MzU3Mzg3NmUtMDEsMS4wOTg1ODE2NDgyMzExNDY1NjhlKzAwLC0xLjI3MDY3MTYyODM4NTE2OTMzOGUtMDEsOC4xMzQ1MjI0NTExNDEwNzA3NTRlLTAxLDQuNzMyOTA1OTQ5MTQ3OTk0NjczZS0wMSw3LjUzODY1NjgzNTYyMzAwNzcwMWUtMDEsLTguODgxODgyMTEwODU1MTMyNjg0ZS0wMSwtMi4yMTU3NDM5ODIwNDAwMDY4MzJlLTAxLDQuMjQyNTI2MTgxMDA4NzAyMjY4ZS0wMSwtOC40OTA3Mjg3MjY5MzY2MDM4NTRlLTAxLDEuNjI5NTAwMDQzMjMyMzI4NTU0ZSswMCwtNy43NzIyODA0MjE1NTEzNDQxMzJlLTAxLC0zLjAwMDAzNTc2OTM3Nzk1MjI0NGUtMDEsLTEuMDA2NTU5MDY0Nzk0MjM3NTEyZSswMCwtMi4xNDMzMDgwNjUyMzg2ODg0NDJlKzAwLDEuNzk2OTE4NTIyNTc0OTI4MDEyZSswMCwtMi4wNDMzODkzNjkwMzA0NzI0NjllLTAxLC00LjQ3OTE0ODM4NDE1NTQwMjUwN2UtMDEsLTEuOTg3MTUwNjE2NzA3OTg2NjUwZS0wMSwxLjQxOTg2Mzk3MjE5NjQzNTY3NWUrMDAsLTkuNjUxMDY2MDgwNjQ0MTcyODE4ZS0wMSw2Ljc5NTY3ODY1NzY1MDgyNDM1MGUtMDEsLTQuMjM3ODgyNDg1NDk0NzYzMzE4ZS0wMSwtNS45NjY3MDg1NTUzODMwOTc4NTZlLTAxLDUuNjcwNTgyMTI1MjAxODI0MDMxZS0wMSw5Ljg4MjQwNTczNzQyNjk2OTE1MGUtMDEsLTUuMTM5MDI5NTAyNzk5MTU1MDQ3ZS0wMSwtNy42ODg0OTE1OTY3NDgwOTkzNDRlLTAxLC0xLjE2OTA5NTc0NzMyMjAyNzE0NmUrMDAsMS4xMDM1MDM3NjY3MjgzNzU1NzllKzAwLC01Ljc1MjU1OTk0ODA2MTE3OTk4NGUtMDEsLTEuODQ5MTMwNzI3Mjc1NDUxMTM2ZSswMCwxLjQwOTk1MjEzODM5NjE0NjE5M2UrMDAsLTEuMzY5ODU5NTAxOTUyOTQyMjYwZSswMCw3Ljc5NDYwNTMxMjU5MDYxNDUxMGUtMDEsMS44MzQyODY0NjY2NzUyNDczMDdlLTAxLDIuODc5MTU0MzIyMTUyNzgzNzc0ZS0wMSwtNS44NDM3NTI3NTMxMTMyMTk0MDBlLTAxLDMuNjU1OTE0NjAyMjQ2MzYwNjY3ZS0wMQ0KNi4yOTk5OTk5OTk5OTk5OTk4MjJlKzAwLDMuMjk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjcwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMS42MDAwMDAwMDAwMDAwMDAwODllKzAwLC0xLjY2Nzc3OTg5Mjg4NDIzNzMzNmUrMDAsNS44ODAzNzc0ODczOTgxMjg0ODllLTAxLDEuNTU3MDEwMDQxNTMyMTYwMTYxZSswMCw4Ljg0MDI3MTk3NDI2MzI2MTgzNGUtMDEsLTIuMDE5NTQwMDg1Mzg2NzIxMzYyZSswMCwtOS44NDIwOTAwMjI3Mjg0ODI0MzVlLTAxLC0xLjg3Nzk0OTIxOTc0ODA2OTA1NGUtMDEsNC44NjkzNzMwNDkzOTkzMjY0NzBlLTAxLC0xLjA2NjUyNjczNjYwMjI1MTAwMmUtMDEsLTQuOTMyMTQzODcxMTA0OTc4MDk1ZS0wMSw1Ljk1MzAwMzA3NjkyMjkyODA3MmUtMDEsMS4xNjQxNTE3NjYyMjQ5NjYzMDBlKzAwLC0yLjMyMjk0MDA3MTg2NTk3MzQ1NWUtMDEsNy4yODkyOTg2NzM4NTIzOTM0OTVlLTAxLC0yLjU3OTA1MDc0NTE4OTQ3NDYzNmUrMDAsLTkuMzc1MDkzODYxMDg3MjkyNDc5ZS0wMSwtMy4yMTI1ODkzNzA1ODAwOTUwODNlLTAxLC00Ljg4NTY2MjIwNzU0NjI1NzQ2M2UtMDEsMy4zMjc5ODIxNzQwNDQ1NDc1NDhlLTAxLDEuMDEzNzUwNTQ3NDk4MjYwNjU3ZSswMCw1LjA2NjY5MDI2MDI4Mzg4NDgwNmUtMDEsLTYuMjIyMjU0NzE3NTUwNTU4MjU2ZS0wMSwtMS41MjI3NjgwOTA1MDQxODYwNDVlKzAwLDUuNTY5NjQxMjA1Nzg4ODcwMDA5ZS0wMSwtMS44MzgxNzY3Mzk2NzAwMTIxNjFlKzAwLDYuNTMwMzcyODM0MDY0Mjg1MjU5ZS0wMSwtMS44ODQ0OTA4MjEzMDA2ODI1MTdlLTAxLC0xLjE3NTgzNDk4NzkzODIyODgyNmUrMDAsMi44NzI1NzMxMjQ2Njc5Mjc1ODBlLTAxLC0yLjg3NjEwMjY1OTAwMDk5MDY2OGUtMDMsLTMuNjU5NzI5MjkxNjI0NjkwMTI4ZS0wMiwtOC40MjIzMjk2NTI3Mzk0MDM0MjdlLTAyLDQuMTk1MjQxMDg0MjYxNDE1MTc2ZS0wMSw5LjI0NDM0MDIxOTU4NTA5NDMzMWUtMDEsNC45NjYxNTE5ODQ4Mzg1MTU0OThlLTAxLDEuMDEyMTMzMTg5ODIyMzA5NTk4ZSswMCwtNC40MTM5NzE4ODQ3ODA2MjQzMjdlLTAyLDEuNjE4NDU5MzI0MjMxOTc0NDcyZSswMCw1LjcxMTA5ODIyMTI5ODIyNjQxOGUtMDEsLTUuNDM2OTQwMjk2ODI3NzY4MDI3ZS0wMQ0KNC45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDIuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwzLjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLC0xLjA5Mzg5NTA1NjczNDQwNTAxNGUrMDAsMi4wNTc5NjgwMzczNDA3OTk2MzllLTAxLC0xLjMwNjUyMTUyMjkyMjYwMDgyMGUrMDAsLTkuNzMzNzU5Njc1NTY3NDg0ODkzZS0wMSwyLjM5MDg3MDgwMzczNTk5MjQyM2UtMDEsLTYuMDc4ODc0NDYyODE5NTQxMjQ3ZS0wMSwtOS4zMzMxNjI0MDIyNjkyMjI3NzllLTAxLC0zLjQ0NzUwNDYwODgzOTgyNTYyNGUtMDIsNy4yNjc3ODk5MTAzNzg5ODgzNjFlLTAyLC0yLjA1ODM0MDI1MjE4NzM3NjE1MWUtMDEsLTMuNzc1NDY5MTkwNTkyODg1NTQ5ZS0wMSw4LjU0NjQyNzI4NzEyNDQ4NjE4M2UtMDEsMy40MjQyNzM1MTI4NjgyNzYwODFlLTAxLC0yLjIzNDI2MTEyMTk0Njk2MDE5NGUtMDEsMi40NjQzMjE5MzM1MTUzNjU0MzdlKzAwLDEuOTM4MzE3MzY5Mjg0MTMwNzMxZS0wMSwxLjEzMjAwNTEzMzY3NzMyOTgwMGUrMDAsLTUuNjA5ODEwMDMxMzE3NTY0NzI3ZS0wMSwtMS4zNjI5NDA5NDcyMDgwMDk2MjNlKzAwLC03LjkxNzU2NTE1NjQzNDY0Mzg2OWUtMDEsLTIuNjgwMDk3ODMzOTgxMTE5MzM3ZS0wMSwtNC45NjYwODIwOTcyOTUxNzAyNTBlLTAxLDEuMzM2Mzg2MTgyMzIyNzkzNjAzZSswMCwtMS4yMDA0MTEyMjA5NjEwODAyNDRlLTAxLDQuNjE0Njg4Nzc0NDExMzk5MDE5ZS0wMSwtNC42NDgxMTU2MDMyODkwMzE4MTFlLTAyLC00LjMzNTU0MzMyNzMzMTY3NTY4OWUtMDEsMy43OTk2MDEzNDUzNTE0OTk4NDhlLTAyLDEuNzE0MDUxNDY5NzcwNzMxODYxZSswMCwtNy42Nzk0ODU5MTczNjgxNTA2NzFlLTAxLDcuNjY5OTA0NTA1NTk1NTExNzM0ZS0wMSwtMS4wMjYwMDcyNTE2MjU3ODE4ODBlKzAwLC00LjU5NjI2NDQyMjY5NDM4OTM5NWUtMDEsMy41ODMyMDU5NTQ1ODM2NDY4MzRlLTAzLDMuMjYzNzUwODk3MjY5OTA2OTcwZS0wMSwxLjQ4MzEyODYyNzk3MzgxNDA2MmUrMDAsLTUuMDA4MjY0MTQ2NDUzNTQxNDI3ZS0wMiwtOC40MzYxNTYwNjUzNTkyNjQ4NzdlLTAxLDYuNTAwNDE5NzMwNTA3Njk3MTY5ZS0wMSwtMy42NDE2OTgwODkxNTc1NTk1NDhlLTAxDQo2LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMi44OTk5OTk5OTk5OTk5OTk5MTFlKzAwLDQuNTk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwxLjMwMDAwMDAwMDAwMDAwMDA0NGUrMDAsMi4zODY4MTU3MDkzMTgzNTM2ODRlLTAxLC0xLjE2MjIyNDM5NTM3NzUxODUzOGUtMDEsLTEuOTQzNDU2ODUxMjg2ODIyNjYyZSswMCw1LjA4Mjk5MTg1NTkzOTczMTM1MmUtMDEsNS44MzM2ODAwNjgyMTI5ODc0NTdlLTAxLDkuMjY2MDQ3NjgzMDg2MDUzODY2ZS0wMSwxLjgwMDQ2Mjc2MjQ2MDIyNzYyOGUrMDAsLTEuMTk1MTAzNzczNDYzNDc1NzM4ZSswMCw1LjE2NTA3NDQ0MjgxNzU5NDMxM2UtMDEsNC4wOTI5NDk5NjY0MDk1NTM2NjRlLTAxLC00LjE5MDgxOTkyODA3ODIyMTAxM2UtMDEsMy45NzEwNjIzNjQ0OTc3ODc3MTFlLTAxLDQuOTk2NDY5NTUxMTE5NjU5OTU4ZS0wMSwtMS4yMTg2ODM4Mjk5NzcxOTY5MzFlKzAwLDIuNDYyMjI3NjEyNzY0MzIxOTQ5ZS0wMSwtOS4xNzk4NDMwNjAwNDYxNTU1NzhlLTAxLC02LjUxODU2NDk5OTMwNTkwNDcxN2UtMDEsLTEuNzc0NzQ0ODE1MTg4NjUwMDE2ZSswMCwtNC43MzM2MDkyNTUwMjQ3ODc2ODhlLTAxLC0yLjAzNTcwNjcxNDczNDc2OTYwN2UtMDEsNS40OTg1Njg2NzI5NjM5MDgyNzdlLTAxLDguOTk5MjY2NzExMDcxNTQ2NjAyZS0wNCwtMS41NDIyODgxNTA3OTk2Nzg2MjVlKzAwLDguNjIxNDgwNTY4ODQyNjczMjIwZS0wMSwtMS4xODU4NjYyMzU1MDA5MjMwNzJlLTAxLDQuODgzNzA1OTA0Mjk2NTc0MTQxZS0wMSw5LjY1OTM2MTE4NDU5NzAxMTc2MmUtMDEsMS40MjI2MDQ3NDg5NjkwMzQ3NzFlKzAwLDEuOTYxMjI2OTg5MzY1MDE1MzgzZSswMCwtNy4yMjM4NzU4NjcxNjY3OTU3NTBlLTAyLDMuMTExMjQ0NDYwOTM2NTM1MjgzZS0wMSwtMS4wNzgzNjEwOTA4MTY3Nzk3NzdlKzAwLDEuMDYxNjAwMTcwMDM1MjYxMDgxZSswMCwtMS4xODQ4ODc0NDQ1NzE3Njk2NDRlKzAwLC0xLjgwNTI1MTY4ODYzMDQyMTA3MGUrMDAsOC4zMDM4NjAwNTM0MDM5MTc1MjllLTAxLC01LjIxNjk2NTI0OTQ3ODE1Mzc2NWUtMDEsNy43NzYwNzI4MTM0MjI0MDQ0MTdlLTAxLDQuMDgwNzQ2NDkzNDYxNjg3MTYzZS0wMSwtMS42MzAwMDI2NTEwMjM3MDg2NzFlKzAwDQo1LjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsMi43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDMuODk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjM5OTk5OTk5OTk5OTk5OTkxMWUrMDAsLTIuNzE5Njc5MzY0MzIyNjE0NDc5ZSswMCwtMS4wOTY2MDE3NDcwOTI3MTkxODFlKzAwLDEuNjQ5MTQ4Njk4MDg2NDUzODU0ZS0wMiwtMS4yMjE3NzYzMzQ2OTQ3NzE4NzFlKzAwLC02LjUyNzYxNDQ5MzQ4NzEyOTQxMGUtMDEsLTEuNDU4OTQwNzMwNTk3MzI1NDMwZSswMCwxLjY5ODc3OTU5Nzk2OTI0NDM4MmUtMDEsOS4wODI1OTI3MDM2MzI1MjA3NDhlLTAyLC00LjgxMzkyNjI0MDQ3NjMzMjc3NGUtMDEsMS4zOTcwNjUzMDEzMTM3NDI2MjVlKzAwLDEuNDk3NzE1MDI3MzE5NTYzNDA4ZSswMCw1LjY1MjY3MjAyNTM2NDUxMDE4OWUtMDEsLTEuNzk5NzcxMTgxNDY2NzQ0NTMwZSswMCwtMS4xMDQ2OTAxNDcyMDU2MDk0MzBlKzAwLDQuMDcxMzAzMzEwODMyNDgxNDI2ZS0wMSwtNi4yODU1NzU4MDI0NDU4OTc0MjBlLTAxLC00Ljg3MDkxNDMxNzExODIzNTA4MmUtMDEsOC45ODk2NzM5NDU4ODA1OTk2NDhlLTAxLDUuMTA4NzQ4MjE4OTI0MTc1MDc3ZS0wMSwxLjMxNDE1NDQzMzgxMzk0ODgwOGUrMDAsLTQuMjkyMDkyOTY2NDY0NzczMzQwZS0wMSwxLjM3NTIyNTQyMDQ0Njg5NzIxOGUrMDAsLTUuNTQxMzEyNDcwODQ0ODU2ODk3ZS0wMSwxLjQ5OTQ5MTQ5MDEzODc2MzAzOWUrMDAsMS4wNTgzNDY0MzYxNjc3ODY3NThlLTAxLC04LjYwNTA5NzQ3MTA5NjA4MDM2NGUtMDEsLTEuNjMxMjE5NTA3NjUzNTMyOTYzZSswMCwtMy4wMTQ3MjMxNDg2MTY5MzE4MDNlLTAxLC0yLjU2MjMyNjk3OTk1NDM4OTA3MmUtMDEsOC41NzY2MTkxMDEyMjQ1MjA3NThlLTAxLC0xLjEwNTkwNTAyODA4MjA3Mjg2MWUtMDEsLTQuMzI0MzE5Nzg1Nzg0NDQ2NzU3ZS0wMSwxLjA3NzAzNzQ3Mjk0NzUzNjQ4OWUrMDAsLTIuMjQ4MjY1NjEyNzAxNTE0NjQ5ZS0wMSwtNS43NjI0MTgxNjIyNjkwMzE4MDdlLTAxLDUuNzQ2MDg5MTcyOTI1NzI3OTYxZS0wMSwtNC44OTgyODIxODg0NzI2Njg0OTdlLTAxLDYuNTg4MDIxNDE2OTE1MTI5NjU4ZS0wMSwtNS45NjkxNzExMTc4MzE5NDM5ODVlLTAxLC0yLjIyOTU5MTgyOTcwMzc5NDIxNWUtMDENCjUuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwyLjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMy41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuMDAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjUyMTc2OTc1NTg4MjY2MzQ0NGUtMDEsLTMuNzQxMjYzMjAyNjQzMDU4NjcyZS0wMSwtMS4zNDUxNDY5MzU3Mzg5Njc5MjRlLTAyLDguMTU0NzE5NjkyNDAwNjAwNDYxZS0wMSw0LjEwNjAxNzkxMzIwMDQ3NjQ4OGUtMDEsNC44MDk2OTg1MDAzNDYyMzUwMjhlLTAxLC02LjM1NDMwNDM4NjE5MjY3MTc5NGUtMDEsOC41MjgyOTc2ODI3NDM2Nzk2MDllLTAxLDYuNjk1NjIzNDA1MDkwODI1ODc1ZS0wMSwxLjAwNDQxOTE5MjI2MTYyNDc5NGUrMDAsLTcuMjYzNjU4MzIxODYxMDIxNzgzZS0wMSwtMS43MjQ1ODU5NjY4MTQ1NzA0OTJlLTAxLDYuMzM1MzM5MDI0NjA0MDA0MjIxZS0wMSwtNi4wODgxNTExNzQxNzEzMTM0NjJlLTAxLC0yLjI2MTIyNDY5NzYzOTU2MjI0MmUtMDEsMS45MjU4MDU3Mzc0NTk1MjY5ODllKzAwLDEuOTUxNzYxMDEyMjY3ODEzNzMzZSswMCwxLjIzOTk0MDU0OTgyNzM2MDEyOGUrMDAsOS4zODU4NTEzNjI0OTc2ODI0ODJlLTAxLC0xLjAxOTI1MTE0OTUwNTEyOTUxN2UrMDAsNS4xMjU2MjIzMTQyNjEyMjMzODllLTAxLC0zLjU5MTE2NTk1MDY1ODg1MjI0NmUtMDEsLTEuMDU4NTcxODk3NjA1MzY3NzQwZSswMCwtNS4wOTAwNTgzODU5MTMxOTk4MTJlLTAxLDEuMTU2NjUwNzQwNDYzNDY1NzIxZS0wMSwtNS40NzM1NTU3NDI5ODY2NjQzNjNlLTAxLC01LjUwNzk5NDI1NzA2ODQwMTUxMWUtMDEsNy45MjA0MTQ5ODQyMjk3NDIyMTdlLTAxLDEuNDQxMDY0ODUxMjMyMzE4MjAwZS0wMSwyLjMzNDU4MDc5NjYyMzE4MDE4OGUtMDEsMS4xMTg3MjM5Njg5NjI5ODM1MzllLTAxLC02Ljc1NzAzMTQzMzcxNjUwOTM4M2UtMDEsLTEuMzcwNTcxOTE3OTYwNjg4MzM1ZSswMCwzLjEwNTY0NzEwNDIwNDc4NDUxNGUtMDEsLTUuMDcwMzY2MzIxMjU0NDM4MDkxZS0wMSwtMi4wMTA3ODIyNjg1ODU4Nzc4MzBlKzAwLC0zLjkyNTY3MjU3OTY1MTUyNDYwN2UtMDEsLTEuMDkyMjE3OTQxMzQwNjIzNDQ0ZSswMCw2Ljk4NjUwMjM0MzA3NzU1MzAyM2UtMDEsNS4yMTYyNTIyNzI0MDMzOTk5NDhlLTAxDQo1LjkwMDAwMDAwMDAwMDAwMDM1NWUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsNC45Njg5MzE0NDgzODQ2OTU4MDRlLTAxLC02LjY1MDQxNjE4MTU4NjkxMDA1OGUtMDEsNy4zMTU1MTU4MTg2MjE1Mzk2NTdlLTAxLDMuMTk2NDk3ODMxMzQwNzI5OTU2ZS0wMSwtNC4wOTg1NDUzODQzOTgxOTUwNDZlLTAxLC00LjUzMzM3NDMyMTM4NTE2OTA0OGUtMDEsOC45MjcwODE1Mjg3MzcwMDIwMDNlLTAxLC00LjczNjA0MDU2OTYzNjU4MDkzMmUtMDEsMy4wMzY1NjQ3MzUyNjI3ODI4MTBlLTAxLDEuMDMzOTU2OTg2ODEyNzgzNTg1ZSswMCwxLjkwOTM0MjYyNTU1NzEwODY1M2UrMDAsMS42NjM4NzMxMjQ0Mzc3Mjk2MTFlKzAwLDkuMDA4MjI3NjQyMDkwMjk4NDcwZS0wMSwtMS41MDU5MTEzNTE1NzEzODcxMTNlKzAwLC02Ljg5MDQ4NDI5NDE3OTcxMjg2NWUtMDEsLTUuNDgwODcxODc0NzI1MzU1OTc0ZS0wMSwxLjY1MzE0OTgzMjU2NTMyMDg4N2UrMDAsLTYuOTkzMTc5NDA5NzIwOTA4NzkwZS0wMSwzLjg2MTY2Mzc3MDk4MzY5MTUxM2UtMDEsMS4wMDg2NzA2MzI1NzMxMTc4OThlLTAxLC05LjM1MTI3MjA5NDM3NTQ0MDE1OGUtMDEsMy44MTgyNDAwOTYxOTM4Mzg0MThlLTAxLDMuOTgyOTYwODYxOTc0OTI1MTYwZS0wMSwtMS4yNTU3NzQ4ODE3NDE1MDE1MzZlKzAwLDEuMjIyODc3NDQ3MDUzNDA5ODM4ZSswMCwtMi4wODY1MTAwMjg4NTUxODc2NjBlKzAwLC01LjkwNzU3MTUyOTA5OTYyMDAyMmUtMDEsOS43MTk3MDI5Mzg2NTU3NTU0MDllLTAxLC0xLjE5MzI1NzgzMzQ3NDAzOTEzMWUrMDAsMy41MDI2NTkxOTU2MjAzMDAxNDhlLTAxLC0xLjI5NjM2MDM4ODI3NTQyOTk4N2UrMDAsLTkuMzAyNDE0NDQ0NDIyMzI4NjIxZS0wMiwtMi4zMTM3NzMxMTMxNzIyMDAzNTdlKzAwLC04LjQyNTcxNzAxNzEzMDA4MTAzMmUtMDEsLTEuNTQyOTIxNDQ3MTU0MjkwMjQ5ZSswMCwtNC4wMTc2Mzc0MjEyNjUwMDYyMjZlLTAxLC00LjE1MjMxMzk1ODIxNjU3MDc4OGUtMDEsLTYuNzM2NjQxNzEzMDkxMzk2OTIxZS0wMSw3Ljk3OTEzMTk2NTY2NzQ1NTMwNmUtMDEsLTguODY4Nzk2MDM4NzE0Mzc3MTYxZS0wMQ0KNi4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDIuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDYuMzQzODY2NzMxODkwNTExNzU2ZS0wMSwxLjYyOTI3NTc2OTk1ODg2MTU4NmUrMDAsMS4zOTA2NDE1MDMwNDY4MjU1NDRlLTAxLC04LjU3NjcwMjA0NTc1Mzk5NjYzOWUtMDEsLTEuMjQ5MzM4NTE0ODYxNTQyMzQ5ZSswMCwtNy4wOTc4NTEwMDExOTQ5OTI0NjBlLTAxLDcuMDQ2NDI3MjA3NDk4OTA5ODI4ZS0wMSwxLjU1NTkwNzM0OTY4ODk3NDk4M2UtMDEsOS4zNjc5NTIxNjI1Mzk4ODg3MTZlLTAxLDcuNzAzMzA4NzkzMjcyMTIwMDM2ZS0wMSwxLjQwODEwNjUxODc4MjM1OTA5NmUtMDEsNC43MzQ4ODI2MTY2NjQ2MjE4NDZlLTAxLDEuODU1MjQ2MjA5NDIwNDc5MTMxZSswMCwxLjQxNTY1NjIyNjE3NDY4MDEyMWUrMDAsLTMuMDI3NDYwMTY5MDQyNTMyMzQ1ZS0wMSw5Ljg5Njc5NDQxOTM1ODkwMzAyOGUtMDEsNS44NTg1MDgwNTgxNzkzNTU4MjZlLTAxLDEuMTM2Mzg4MDc3NTM5NzM5NDcyZSswMCw2LjcxNjE2NTcyMDM1OTA5NzQyNGUtMDEsLTkuNzQxNjc0MzUwNDI5OTAwODE5ZS0wMSwtMS42MTk2ODQ1NjUzNzI3MDA1NThlKzAwLDUuNzI2MjcwMTcyMDUwODU2ODY2ZS0wMSwxLjkwMjYxODE5ODM2OTgzMTE0OGUrMDAsLTcuNzU2NjQxMDc5Mzk5NzA2NDg0ZS0wMSwtMS44ODA4OTczODA0OTY1MDIwNjllLTAxLC0xLjAzNTc0NzcyNjE5NTIxMjgyNmUrMDAsMS4xNzc4Mjk1MDQ3MDU2NTk5NDZlKzAwLC0yLjMwNTE2Njg1NTA0MzUyMDcwMmUrMDAsLTIuMjYzNjYwMzAxMDM1ODA4NTA5ZSswMCwzLjc1MDE5OTE5ODIwMTUzMjU4MGUtMDEsLTguMjM0MzY0Njc5MTM1MjExNTI5ZS0wMiwtNC43OTYyMzAxNTA3MzgwNjUwMjNlLTAxLC0zLjAxMDk0Nzg2NTIzNDEzNzA0NGUtMDEsNS4zNjk4NzkxNDQ1NjM2MTYyNThlLTAxLC00LjEzODAzOTg5MDQ5NjY1MDg4NmUtMDEsLTEuMDk2OTI0OTcxNzMzMTEzNTQxZSswMCwtOS4yNzM2MjkyODA3Mjk2NjI3NDllLTAxLDguODgzMzg4NjE5OTY4NDI2NDM2ZS0wMSwtNS4yNDc0MTk1NDk2MjIyMDMxMzllLTAxLC0xLjM4NTI3NzU4Mzc2NzE5ODIyOGUrMDANCjYuMDk5OTk5OTk5OTk5OTk5NjQ1ZSswMCwyLjg5OTk5OTk5OTk5OTk5OTkxMWUrMDAsNC43MDAwMDAwMDAwMDAwMDAxNzhlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjAyMTc4MzI2OTQzOTcwNzM0OGUtMDEsNS4wNDk5NDcyMTc4MDAxMTE0NjVlLTAxLDEuMzI4OTYwNzQ3NTUzMjIzNDY1ZSswMCwyLjE3OTAzMzg3MTIxNjY4OTg0NGUtMDEsLTYuNTk3MTEyNDcyMDk2NzAxMTUyZS0wMSw0Ljc0MDA3ODY3Mjc3MDI5NzA0MWUtMDEsNy4yNzE3NDg3MDAyMDQzNjQ1OTFlLTAxLC0zLjg5MDUzMDY2NjM4MDY3NjAxN2UtMDIsLTQuNDU5OTM5MjcyNTU3MzQyOTMyZS0wMiwyLjYwMTMyOTA0OTM4NzY3NjcyOGUtMDEsLTYuOTg1NjQ5ODI1NjE4NDI0MzQ3ZS0wMiwyLjUwMTEzOTA2ODgzMTI1NTY5NmUtMDEsLTEuMDIxOTEzMzI0NDI2OTI4MjgyZSswMCwtMS4xNTA0Mzc3Njk4MTg1MDk1MzdlKzAwLC04LjM2MTExMzc5NTAwNzY4OTY5N2UtMDEsNi40MjIxMDk0MzMyOTQyNTg1NDBlLTAxLDIuNTg3OTc1NjczNDA2MDg3MTQwZS0wMSwxLjA0MDIzODk2NDI0OTU1ODY0MGUrMDAsLTEuODY2OTA5MjIxMTQ2MDk5NDE4ZS0wMSwtMS4xNDM2NDEzOTU4NDE4NDk2NTFlKzAwLDEuMTQ0NTUzNTM1Mjg0NTU3OTQ0ZSswMCwtMS44NzY3MDU1NTM5ODkyOTIzMjdlLTAyLDEuMjgzNDU1MDM2MjY2NTI1MzUxZSswMCw1Ljk3OTQ2NDkxMzkyMTgwNTkwMmUtMDEsMi4xODg2MTg2Nzg4MjI4MzcwMDVlKzAwLC0yLjE5NzcyOTg1NzEzMzYyMzQ1NWUtMDEsOS4wMDcyMzkwNTA4OTE4MDY1NDJlLTAxLDguOTEzNjQxMDYzNTI5NDQwNTIyZS0wMSwtNS41NTEyNjM0NTQ5NDQ0OTk0NjVlLTAxLC0xLjcyNDgyMzE3MTA2OTYwOTA4NWUtMDEsLTEuNDYxNzM4MzQyMjE2NzIyOTQxZSswMCwtMS41NDg3OTYxMzcwMDI2NjU3MThlKzAwLDEuMjY1Njg4MDE1MzA3NzQ5NjAzZS0wMSw3LjkzMDA3MDcwNjk3NDI3Mzc0MmUtMDEsNi4zODAyNDAzMzQ5NTQ1NDg4OThlLTAxLDMuNDAwMjQ1OTgyNTk2NTI2NDQwZS0wMSw4LjYzMDE3MTUzMTUxMDkxMzk4NWUtMDEsLTUuODk2OTc3OTU2OTkzMjQ3ODk0ZS0wMSwtMi43MjUzMjc0ODQ4Nzc1OTQ5MDhlLTAxLDcuMzc1MjE1MTM0MTM4ODE3MjQxZS0wMQ0KNS41OTk5OTk5OTk5OTk5OTk2NDVlKzAwLDIuODk5OTk5OTk5OTk5OTk5OTExZSswMCwzLjYwMDAwMDAwMDAwMDAwMDA4OWUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDQuMzMxMTg3Mjk0NDg5MzMzMTUxZS0wMSwtMi4xMDE4ODgxMzc5Njc2MjMyNDllLTAxLDEuMzIwNzk0Mzg2MTI3OTE0NTU1ZSswMCwtMS4yOTIwMDEyNTEwNDcxMjc0ODZlKzAwLC01LjE4Njc4Njg3Mjg4NTkyNDU0OWUtMDEsLTIuODMzOTc3NzQ0NTYyNTI0MTU5ZS0wMSw4LjE2NTM0ODc5NzczNzcwMzcyM2UtMDEsMi4zODUxOTc5MTUyMzUxNjIzMjJlLTAzLC0xLjI2MTQ5MTc0Njc5MDYxNTA0M2UrMDAsNS4xNDAwNDE3OTgxNjA2MzUwMDBlLTAxLDEuMDg3NTQ2MzE1NDY2ODk0NTA5ZSswMCw3LjM5MzA0NTMzMTMzMDI2MjQyNmUtMDEsNi4xOTE1NDkyMTYwNTQ4ODkwNjBlLTAxLC0xLjg3NDMxMzQ5Njc0MTA2ODE3NWUrMDAsLTguOTk4ODY0NzY3NDM0ODQzMjA0ZS0wMSw0LjgyMDgwNjA4NjcyMjAxMDk0MWUtMDEsLTUuNDg4ODE4NDc1NDM4ODQ4ODc2ZS0wMiw1LjIyNTU3NjAxOTk4ODExOTYwM2UtMDEsLTEuMjY2MzQyNjc2OTYyOTU0MjE3ZSswMCwtNi4xNDk0NzY0Mjg0ODg2MTQyODJlLTAyLC0xLjM4OTc4MTAxODg5NjIwNjc1NWUrMDAsLTEuOTUzNjc4NTYyNjE5NDA2NDIyZSswMCwyLjk1Nzc5MDg4NTA2ODg3MjIyMmUtMDEsOC40MjU4ODc5NjQ1Njk4MDM3MTJlLTAxLDIuNDU2MTY0Mjc5MDE3NzU3OTEyZS0wMSwtMy4yOTk2NDgwMjY0NjY2MDk2MjRlLTAyLC0xLjU2MjAxNDM0MTgyOTI2NjI0MGUrMDAsMS4wMDYxMDcwNjcwOTc1NDcxNTllKzAwLC00LjQwNDQ4OTczNzU5NDEyNzA2OWUtMDIsMS45NTk1NjIwMDUyMDU3Njc4NDNlKzAwLDkuNDIzMTQzMDgyNzY5NjY3MTY3ZS0wMSwtMi4wMDUxMjU0MjY2NTIxNDgzMjRlKzAwLDcuNTUwNDk2ODAyNTU4ODc5MjI4ZS0wMSwtMS4zOTY1MzUyMzc1NzMxNTcyMjllKzAwLC03LjU5NDk1NDkwNDI5MDY0MDU3NGUtMDEsLTIuNTA3NTY2NzY3NjAxNDk1MTA2ZS0wMSwtOS40MDYyNDUwMzYyNjAzNjYxMjFlLTAyLDMuOTc1NjUyMTU2MTc0NjYxNjExZS0wMSwtMS4wMjI4NTUwNDA4MDQyMTQwNzdlKzAwLC0xLjE1MDY5MjAwNDI1NjY0Njg2MWUrMDANCjYuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwzLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsNC40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDEuMzk5OTk5OTk5OTk5OTk5OTExZSswMCw2LjAwNjA1MjAxNzMzMDc2MDc3M2UtMDEsLTEuMzI1MDI2NzkzNDAyNjY1OTQ0ZS0wMiwxLjc0MzczMDQ4NzAxNTI1NjE4MWUtMDEsLTIuMTkzNjgzMzUxNjk0NjYwMTExZSswMCwtMS43NzEzNzM4MzMxNTMyMzU1NDRlLTAxLC04LjkwNzI5MTgzMDYxNDk1ODQzOWUtMDEsLTkuMjA2MjYzNzMwMTY4NjkzMzcxZS0wMSw5LjIxOTM0ODA0MjI0NTc3NTE5OWUtMDEsLTEuMDk1NjcxMjI4OTcyNTEyMzQ1ZSswMCwtMS4wOTI4OTY2MDYzMjYwMzAxNDBlKzAwLC0zLjMxMDEwNjAzNDAxNzQ1ODczMmUtMDEsNC41MDI4ODgzMDY0NzM0NDIwNzBlLTAxLC04Ljg0MDE0NzI5NzQ4MDg2MTQ3N2UtMDEsMS4yMzQxNDQwMzU3ODAwNjE0ODhlKzAwLDEuNDQ5ODQ3NTI1MzYxMjE4ODU4ZSswMCwtOC44MTQ0NzA2NjQ2ODQ2MzgyNDZlLTAxLC0yLjQ1MDgxNzU1NTc2ODU1NTc1NmUtMDEsLTcuNzg2NzU0NzI2NTc2MTI5NDM3ZS0wMSwtMS42ODUzODIxMDQ4NzEyMjcxOTNlKzAwLDMuMDMwMTEwNTA0NTYxNTczOTM2ZS0wMSw3LjMzNTk0ODY4MjI5MzY5NTg5OWUtMDEsMi4wMTE4NjQyNjMxMjY1NjE1MjVlKzAwLC04Ljk3NDA5NTAzNjMxMzM2OTgwMGUtMDEsMS4zMzYyMzUwOTA4MTI2MjEwNDBlKzAwLDEuMzQyMzUzNjkxMjU3OTUzMjMwZSswMCwxLjk3ODUzMzA5NTY3MTUzMDc5NWUtMDEsNi4wMjE2MzQ4OTU3NjA2MzgwNDBlLTAxLDguNzMyNzMwNDgzMDA3MDM2MjQ4ZS0wMSwxLjk3NDA5OTk0ODI0MTg5OTQ5NGUrMDAsNC43NzgwODU2MjYxNjQ2OTQyMzNlLTAxLC02LjAxMzc4ODU1MDM2ODUyMTM2M2UtMDIsLTguNjYxNjg3OTkwMDc0NzIyMzQzZS0wMSwzLjA1MzIwNzU1MDEyNDk4MDU3NGUtMDEsMS4wMjQxNjQ5MzI3NzMwNjk5NjllKzAwLDIuNDQ2MTAzNjEzMjk0NzE5NDgxZS0wMSwtNy43OTkyMzI0ODkyNTAwMjk3NjVlLTAxLDguOTA3NjIwMjQ5NjU2MzMzOTIyZS0wMiwtMS4yOTE1MzQ4MjQ2MDExMzg3NzZlLTAxLDIuNjQ3Mzg3NTc3NTU3MDcyNjU4ZS0wMSwtMS42NjE4NDgzNjcyMTgyNTAwMjJlKzAwDQo1LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMy4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsNS41MDc4ODYxNDEwMjczMTM4ODdlLTAxLDUuOTU0MjMxNTY3NjM3MjMwMzgyZS0wMSw0LjQ0ODUzNDM4MTg2NTA4NTc2M2UtMDEsLTMuNzYyODE3MTQ1MDI0MDI1MjM5ZS0wMywtMS44MDU5MzYyNjI2MDM0MjE2NjBlKzAwLC0xLjkzMjI3OTE5NzEyNjM0MDg4NmUtMDIsMS4wNjA3MTQ5OTkzNDIxNjk2MThlKzAwLC04LjYwMTI4ODc2MjkyNDYxMzc1MWUtMDEsLTEuOTg5MjY5NDY2MTYxMjgzNzUwZSswMCwtMS41NDA1NTc5NzE4NzA2OTM2NTRlKzAwLDMuMTQwMjU2OTE4MjA2MDMxMzY3ZS0wMSwzLjcyODc2MDA4ODUyNDM3NTQ2MGUtMDEsOC44NjI5MzE5NDYyMTQ2ODA1MDFlLTAxLC01LjUyNTg5OTU3Mjk2NTI0ODI1MmUtMDIsLTEuNTAwMzI4Mzc1OTc4NTcwNjA1ZSswMCwtOC4xODUwNDE0MDU5MzY3NTcxMDhlLTAxLDguMTg4MzkzNzI1OTkzNDc4MDM0ZS0wMSwxLjQwNDk1OTA3NDM5NDc1OTAzM2UtMDEsNi40OTgyOTYzNDY3OTk3ODY3MzhlLTAxLDQuMzQ3ODg4MDU0NjEwMzk3MDY4ZS0wMSwtMi4wNDk2MDU1MTczMDI5NTkyNTdlLTAxLC0xLjc0MDA2ODM3NTA4MDMzNjk2MGUtMDEsMS44NTcxMDIyNjk3NTU4NTk2ODBlKzAwLDQuMTQ2NzQyNjY2MDkyMjA5MDk1ZS0wMSwtMS4yODU4NzU1MDMxNjM2MDU5OTNlLTAxLDQuNTU0MTk5OTA5MzY4MDk1MTU2ZS0wMSwyLjIyOTA1ODE5NjI0MjczMzMyNWUtMDEsLTIuMTU3MzU2MzczNDk0NDYxMTg4ZSswMCw2LjUwMDg0NTE0MzcyMzE0NDAzN2UtMDEsMS44MjA5MzkyNzQwODk2NzU0ODZlKzAwLC03LjgwMjc5ODY4MzkwMDY0MDI0MmUtMDEsMS40NTQwMzU3NDg4MzkxNjcwODZlKzAwLC0yLjU2ODY5Njk3MzMxOTE2OTQ2M2UtMDEsMi45MzQ3MTM5NzY0OTgyMjI3NDNlLTAxLDEuMDcwMzYwMDE2OTczMTczOTU2ZSswMCwtNy4yMDAwMTQzMTI5MDgwOTE3OTZlLTAxLDEuMjQyNDkzOTEyODE4NDcxMzI0ZSswMCwtMS4yMTQyMTcyODEzNTkzMzkyNjJlKzAwLC04Ljc1MTU0NzQ4OTEzOTE2NDI0OWUtMDEsLTUuOTM1MjAzMTczNDc1MjU4NjA5ZS0wMQ0KNS43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDIuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMS4wMDAwMDAwMDAwMDAwMDAwMDBlKzAwLDYuNjIwMDUzNjY0NTE5MDIyMjE4ZS0wMSwtMy40MDg3NDQxMDU2OTQ3MDc2NDllLTAxLC0xLjUxOTk3NDQ1OTU4NTg2Nzk2NWUrMDAsLTIuMTY1MzI4NzE4NDk4Mjg0MTc3ZS0wMSwtNy44NDIyMTM4MjUzNDM4Mzg5MjllLTAxLDcuMzEyOTM2MjA4NDAzNjg1MzAxZS0wMSwtMy40MzIzNTA1NDQ1NTEwMzI3MjNlLTAxLDcuMDc3NDA3NTkwMDY1MTM2NDc4ZS0wMiwtNC4wNTQ3MjQ1NzE0MDY3MTMxNjNlLTAxLDQuMzM5Mzg5NjgyMzAyODg5MzUxZS0wMSwtMS44MzU5MDc2MzQ3MDU1NDE5NjllLTAxLDMuMjUxOTg3MTQ2ODcwNjUyOTM0ZS0wMSwtMi41OTMzODg1NjQ3NDE3MTAzMTJlKzAwLDkuNzI1MDg3Njk3Nzc4NjE0MzcxZS0wMiw0LjEzOTEzNjcwMTEwMjMzMTExN2UtMDEsLTEuOTkyODAwNTQ5MTQ1OTIwMjUzZS0wMSw2LjY5MzkyNDcxMzkyNTQxNDMyN2UtMDEsNy4zODYwNzAyODk5MjgyMDcxMzNlLTAxLDEuMzA0MjEzODkxODQ5NTAyOTgyZSswMCwxLjA0ODExNjA4MDcyMjgxNjUzNGUtMDEsLTEuOTEzODAwNzA0NjY5OTgxMjAxZSswMCwtMi4yODU0OTk0NDg3ODk2NDUxNzJlKzAwLC0xLjYwMTg0MDk1MjA3NDUxNzU5OWUrMDAsLTMuNzkwNzA2MTE4NDEzNjE5ODE4ZS0wMiwtMS41NzMwNTI4ODI4MDU2NTY2OTRlLTAxLDIuNzYyMzk4NTIwMTk5NzM3NTI4ZS0wMSwtNi4yNTI0NTkyMjU1NzE3MzgxNjZlLTAxLC03LjM2NDkxMTcxNTA1NzQ4Mjc2NmUtMDEsNS41NTA0Nzk0MjQxMDQzNDA5MjBlLTAxLDYuNTU5MjQ0MTEzNzI1MDE5MDMyZS0wMSwtMi41NjY1MDEzNTQ4MDQ4MDgyMzNlLTAxLC0zLjg0NzY2NTgyMzg5NTMyOTg1MWUtMDIsNC4wNDMxNDM0MzMyODk5MTEzMjZlLTAxLDUuMDQzNDM1NzUxNjI5OTQ1NTA3ZS0wMSwtMS4xNDM5ODA2OTk1OTg3NDAyNjllKzAwLC03LjE5NTczODU1OTE3OTUwNzU1NGUtMDEsLTEuMjMwNTQ2MDQ1NjQ1Mzg2NzIxZSswMCwtNS4wNjkwNjYxNDgzNjgzMDYzNzllLTAxLDguMTIzMzM1ODkzNDE4MzEwODYwZS0wMSw1LjQ2MjcxODY2OTQzNzY1NTA1MGUtMDENCjYuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCwyLjIwMDAwMDAwMDAwMDAwMDE3OGUrMDAsNC41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDEuNTAwMDAwMDAwMDAwMDAwMDAwZSswMCwtMS4wOTgwOTc5NjAzNjI1NTg2ODllKzAwLDUuMTIyNjY3MjY4MjU5ODE4NDQxZS0wMSw4LjU4NDMxMDUzNDI0NTE5ODYzMmUtMDIsLTQuOTM5MjY3MDcwODU5MjA2Nzk5ZS0wMSwtMS40MDY0NTk2NTUxMDM2MzEyNDZlKzAwLC0xLjc0ODIzMzcxNjE3NzY2OTUzOWUtMDEsNi43OTk0NDAwNjExNTk1NTUxMjZlLTAxLC0yLjE2MzA5NzY0ODM5NjEyNTcyN2UrMDAsLTMuOTYxMjMxOTc3NTE0NDk0OTYyZS0wMSwyLjI1NDI4MzY5ODgwNDk2MjM3N2UrMDAsNi43MjYzNjcxODU2ODA5MzgxNjZlLTAxLDIuNTk4MzI0OTUwMDM0NzU5OTM5ZS0wMSwtNy4zNzE4NTE2OTU3MDkxNDA2NzNlLTAxLC02Ljc4MzI5ODM3ODczOTY5NzIxMGUtMDEsLTguMzI4ODM5NTY5OTk2MzM2NjIzZS0wMiwxLjYwMjg2MzYyOTM3NzEzNTg5MGUrMDAsNC42NTU4OTE5MDg5NDkzMDUwNDdlLTAxLC04LjcyMTU4Mzk3NzcwODIyNjAyMWUtMDEsMS4xNzY3ODY5NjIzODM4NjM4MjJlKzAwLC0yLjkyNTk0MjA3MTU4MDkwNzAyMmUtMDEsMS42OTczNDY0ODEwMTM5NDkxMzhlKzAwLC01LjY2NjAzMDI0NjM3NzA0MDY2OWUtMDEsLTEuMDAzMjY1NzU2OTAzODg4OTcyZSswMCwxLjc0NjI5NTc3ODEzNTY5OTk3MmUtMDEsOS44MjMyNjk4MzgwMDI5ODAzNzBlLTAxLDEuMDM3NDQ0Nzk2NzMwOTEwMTY4ZSswMCwxLjU5MTkxNzY2NjY4ODExNTE4NWUtMDEsLTkuODgwOTY2ODc5Njg2MTExNjQ4ZS0wMSwtNS4wNTM0MDcyMTg5Nzg4NDkyNThlLTAxLC0yLjAxODI4MTg2ODM1NDIxNjUyNGUrMDAsLTkuMTMxMjE1Mzc1Njg4MjAxOTYzZS0wMSwtMS43ODQ1NjgxNDg5NzI2MzExNjNlLTAxLDMuODkwMDIxNDA2NTM0NzkxNTU5ZS0wMSwtMy4zOTQ1NDMyMTQ2NDc3OTEwNzRlLTAxLC01LjY5NzkwNTQ5Nzc3Mzk2NjgyMWUtMDIsLTMuOTYxODU0NDQ3NDk4MTY5Mjg1ZS0wMSw3LjUxMDI1MzA0MTg5NzcwMjA0MmUtMDEsLTguOTkxMTI5Mzg0MjY1Mzg4MzI1ZS0wMSw4LjM3NTQ3OTE0MTQ2MzI2NDU1NGUtMDEsMS45NjA4ODA4MTI1MTM5MTA1NTRlKzAwDQo1LjU5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMi41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDMuODk5OTk5OTk5OTk5OTk5OTExZSswMCwxLjEwMDAwMDAwMDAwMDAwMDA4OWUrMDAsNC43Mjc4OTY1NjAyMTkzMTEyNjJlLTAxLC01LjI3MDkxNjEwMjI0MDQxODI4OGUtMDEsLTUuMzYyNzAxNDQwODY3ODUwODMzZS0wMSwxLjIwOTgzNzIyMjE4NDA5NzYxNmUrMDAsLTEuMTI2NTg5NDI1ODcxOTk3NTA3ZSswMCwtOS41MzgwNDQyMDI3MjU2Mzk1NzVlLTAxLC0xLjE2NDQ0ODQ1Mzg3MDQ2NDQ3M2UrMDAsLTEuMjc4NTEzODQwNTIwNjg2MTczZSswMCwtMS4wNDQ4MTYzMTkzNzk4NTY5NzNlKzAwLDcuODk5MDQ5NDE3ODU0OTMwODY2ZS0wMSwxLjEwMjI4MjU2NDU4ODAyNDMxNmUrMDAsLTYuOTcwNzMwNzIzNjAxODMxMjE0ZS0wMSwyLjA3MzM0MDQ2MDQ1Njg5ODYyNmUtMDEsNy41OTE1NjY3NTEwODIzNDE0NjllLTAxLDEuMDA1NjQyMDMwOTcxNjI5NjMwZS0wMSwtOS41NDk0Mjc1NzYxNzIzODkwMjFlLTAxLC0xLjQ3MDQwMTczNTEzODA4MTM2N2UrMDAsMS4wMTA0Mjc1NTMxMjU1MDg2OTNlKzAwLDQuOTYxNzk0MTIyODgzODA0NzI1ZS0wMSw1Ljc2OTU1ODkzMzk4NjUzODI5NmUtMDEsLTEuMTA3NjQ2OTAwOTAxMDMwMTI5ZSswMCwyLjM0OTc3MTkyODg5MDUxOTE2OGUtMDEsNi4yODk5OTU4NzQ1NjgyMTYwNzJlLTAxLDMuMTQwMzM4NDM2NDcxNDU1Mzg2ZS0wMSwtNy40NTAyMzIxNjgwNzY4OTAxNDllLTAxLDEuMDEyMjYwNTEwMDY1MzM1Njg0ZSswMCwtMS41Mjc2MzE5NDgxNzg3NzM5MDJlKzAwLDkuMjg3NDE5MjQ4MDY5NDE1MTAxZS0wMSwxLjA4MTA1NTk0NDA4NzA3MzI4NGUrMDAsMS41NzIzMzAzMTc1MzUyMjQ3ODZlKzAwLC0zLjQyNDkyMTkwMjUwNDQyOTE4M2UtMDEsLTkuOTk0MzAwMTY1NjE1MjA1Mjg5ZS0wMSw3LjkzODgwMzYyMzA4MzgwMTA1M2UtMDEsLTYuOTkyMTUyNzkwODY5NzQzMzk1ZS0wMSw0LjM5OTU1MTE0NDM5ODg3ODQyN2UtMDIsLTMuMTc0NjIyMTcxNjAwNzE5NDY3ZS0wMSwtOS4wMjA3MTk3MTQxMzA4NDgxNjZlLTAxLDMuMjA5OTk0NjYxODQ4OTE2MTMxZS0wMSwtMS4zOTIwMTU5MTY1NTgwMzU2OTNlKzAwLDUuOTIyMDU2ODE2NDQwMzk0MTY3ZS0wMQ0KNS45MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDMuMjAwMDAwMDAwMDAwMDAwMTc4ZSswMCw0Ljc5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS44MDAwMDAwMDAwMDAwMDAwNDRlKzAwLC05LjY2OTMxMDg4NDU2NzM0NTg4N2UtMDEsLTEuNzMxNzMxMzQ2NDY3OTI2MjU4ZSswMCwtNS4wMTA3NDU4NzkwMjkyODM4NjdlLTAyLDQuMzE2MzM4NTI4MTEyMjMyMzk4ZS0wMSw1Ljc2OTM0NTk3MDUzMjI0MzYyOGUtMDEsOC4xODM1MzczMDgyNzE2MTM0MDllLTAxLC0yLjM1MzY0MDM5OTY5MDQxMzYwOWUrMDAsLTEuMDA1MTQ0NDMwOTU2NjcxNDk3ZSswMCwxLjA2NjUyMjk0NTAzMDMyMTI0NmUtMDEsMS41MTkwMDMyNzk5MzYxNDU0NzllKzAwLDcuODM3NDQ0OTM2NzQ3Mjc3NjAyZS0wMSwxLjkwMTM0MDA1MTg0ODExMjUwMGUrMDAsLTUuMjQ5Mzk0MjI5MTM5OTg5NzY1ZS0wMSwyLjc0NDE2OTk1MjgyMDA4NjM1NmUtMDEsLTEuMDk5OTcwODA3NTY5MzA3MDk2ZSswMCwtNC4wNDM1MjIxOTYyMzk5OTc1MzVlLTAxLC03LjM1Mjk1NzE4MjgyOTczNTc2MWUtMDEsLTYuMzM5ODg2NTkzMTY3MjEzMjU4ZS0wMSwtMy45MzQ0OTEyMTE4NTY2MzI3NTNlLTAxLDIuNzE3NTM5ODkwNjgwODkwNzM5ZS0wMywyLjIyMTI2NjQ1MTY0ODQwODgxNmUtMDIsNS40MzQ1MzQzOTU4MjcyNTQwNjFlLTAxLDEuMzk5ODg0NjczODY4NTkzNTU0ZS0wMSwtMy40NDA0NTYyODg0OTYyNTM2MjNlLTAxLC01LjIyNTc4NTQxNTMxOTQ2NjA1NGUtMDEsLTMuMDcxMzE3MjAxNTg2ODQwNjI4ZS0wMSwtNC40OTAzNzE0MTQ0Njk2NTU0ODdlLTAxLDQuOTA5NzEwNTUxODE5Nzk2NDMxZS0wMSw4LjY1NTI1MTkwNjcxMjYyNDM0M2UtMDEsMS4yNzQwNDQ1Mzc5NDcwODQ2MTBlKzAwLC03Ljk3NzAyNzU5OTQwNDE3MjgzMWUtMDEsNC42OTM3MjIyNTMzODc1MDA1OThlLTAxLC0xLjM5NDY3OTY0MTU5MjY3NTY1NmUrMDAsMy43MzE3NDcxODI1MjU3ODE0MTRlLTAxLDEuMDgyNjcyMjgyMDkxMDY0NTg2ZSswMCwtMS40OTU4OTUwMTY2Njk5NDk3MjllLTAxLDEuMDcyNjM2MDQ3MjU4ODczMTgyZSswMCwtMS4xMzg1Njc4NzAzMTU0NzY2ODJlKzAwLC04Ljg4NjQ1MjgzMDkxNjM2NzA2M2UtMDEsLTEuMzU4MDk4NDI2NDM2ODY1MzQ3ZS0wMQ0KNi4wOTk5OTk5OTk5OTk5OTk2NDVlKzAwLDIuNzk5OTk5OTk5OTk5OTk5ODIyZSswMCw0LjAwMDAwMDAwMDAwMDAwMDAwMGUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLDEuMDIyMjEwMzU0NTg1ODI0MzIxZSswMCwtNC4xNzQyOTQ1NjM0MTk4ODE5MjBlLTAxLC00LjUzNTUzMTAwOTA4Nzc0NTk3OWUtMDEsLTkuOTE2MjgzNTgzNzgwMjA2NTc5ZS0wMSwyLjAyODgxMDQ0NDQyNjIxNTg4N2UtMDEsMS4yNDY2OTUxNDA4OTQ0MzU1NjFlKzAwLDcuMDA2ODAxMDkwOTM2OTIzODI2ZS0wMSw2Ljk2NjUwNjU0MzM2MjY0NzE4NmUtMDEsLTIuMDY5NzQ0NzQ5MjM2NjQwMjU4ZS0wMSwtNS42MzMwOTM1OTI2MzkxNDQ1NTNlLTAxLDYuNzcyNDU5MTY0MTYzNzAyMTk0ZS0wMSwtMy4xOTExMDc1NjM0MTQwODY4ODRlLTAyLC0xLjczNjA4MjM1NzE5MzgxNzQ4M2UtMDEsOC45ODI0MDYyMjQwMzYxNTU3NDBlLTAxLC0xLjk3Nzg3NDUxNjcyNzI5OTAyNmUtMDEsLTguMzc3NzYyNTkzODUyMDU3MjM4ZS0wMSw5LjA5MTg4NDk1MzMwOTY2MTI4OGUtMDEsOC4wNzE5ODkwNDMzODY2NjgxMTdlLTAyLC0xLjAzNzAyOTM0Mzg0ODY5MTk0MmUrMDAsLTEuMTEyOTA1ODk0ODcxNjE2MTc1ZSswMCw5LjU0MTE4NzU4MjY4NjY4MTgyM2UtMDIsMi4zMzc0MDk2NjE0NzgyNzU3ODBlKzAwLC0zLjkyODIwNjAzNTQ2MjA4NDU3OGUtMDEsLTMuMzYyNzM4NTkwODU1Nzg0OTcwZS0wMSwxLjUyMzc3MTE5NzYxNzA1MzM3NWUrMDAsLTUuNzI4MTE5OTc5MDUxNTM4NzE4ZS0wMiwtMS40NDg0NjY4NjMyNDc5ODgyMzRlKzAwLC0xLjU3Mjc5NjQ1MjU0ODE3MzI0MWUrMDAsMS4yMjY2NjM5NzM3ODc0ODAyNjZlKzAwLDYuNjYzNTQ1NDIyNTAxODg4NjM4ZS0wMSw4LjI2MTI1NzA4NDMxMTkyOTI4OGUtMDEsLTUuNzc1NjU1ODM3ODcxMjc0ODE3ZS0wMiwtNy4yNjcxMjAyNTk4Mjc5NzYwNDhlLTAxLC0yLjE3MTYzMTE1NzI0MTY2OTY2M2UtMDEsMS4zNjAzMTIxNzM3NDM3Njc2MTZlLTAxLC04LjM4MzExMTU1Njk4NzAxMDcxNWUtMDEsNS42MTQ0OTkwOTU1MTEyNjcyNDZlLTAxLC0xLjI1OTU5NjE2ODc5OTcyMTQ3MmUrMDAsLTMuMzI3NTg3NjQ1NzUyMjM3NDIyZS0wMSwtMi4wNDAwNzg3MjQ3NjUwMjg5OTVlLTAxDQo2LjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMi41MDAwMDAwMDAwMDAwMDAwMDBlKzAwLDQuOTAwMDAwMDAwMDAwMDAwMzU1ZSswMCwxLjUwMDAwMDAwMDAwMDAwMDAwMGUrMDAsLTYuOTEwMTk4MTMxNzUzNjg1MzU4ZS0wMSwtMi4yMDU1MDUzNTUwMTk4MjIwMzRlKzAwLDQuNDc4Njk2NjQxMTEyNTI1NjM0ZS0wMSwtNy41NTc1MDc2MDQ0MDI2NzEyMjBlLTAxLDEuMzI1NzA3OTU5MzI0MzcxNDY1ZSswMCwtMy40MTk4MjI3NzY4NDA1MjI2MDVlLTAxLC01LjQxMzU5NTg4NDMxMjIwNTYxOWUtMDEsOS4xNTIxOTQ2Nzc4ODc3MDgwNzRlLTAyLDEuMDUzNDM5NzQ4NjMwNDQ4MDkyZSswMCwtNS42MzQwNzY2MzExODE2OTY5OTJlLTAxLDEuMDE0NzM3Njk0ODI5Nzc2ODI2ZSswMCwxLjQ0MDMwMzY0MTAxNzYyMjY0OWUrMDAsOS45MDMyMjgxMDY1NTk0NTUxNzllLTAxLDEuNjI2NDMxNDkwOTkyMjU3MjU2ZSswMCwxLjI5MjY0NjAyMTAxMjQ2ODgzOGUrMDAsMS41MTQ4ODIyOTM4OTMwMDU3NzFlKzAwLDEuNjA0MzI2MzE5NDE1NjQxMTg5ZSswMCwyLjA4MDY5NTI5NjI5OTYzODA2NGUtMDEsLTQuMjkyMjM4OTk1NzIxOTgzMDg2ZS0wMSwtMi4yNjIyNDM2MzUyNDM4MDU3ODRlKzAwLC0xLjMyMjczMzExOTUyMTc5NTczMGUrMDAsLTQuNDgyODI3OTkxNTg3OTU1OTc0ZS0wMSwtMy44MTczNTA4NzI0MDU2NTk4NDVlLTAxLC0xLjUyNzk0NDYzNDAyMDg2NjA1NWUtMDEsLTEuMDAwNzYwNDkwMjQ4NzUwMTM0ZSswMCwtMS41OTU3Nzc2MTE0NDEzMTQwMjZlKzAwLC0xLjMwMjIzMTY2NDY2NzI2MjE0NWUtMDEsLTEuODk0MTc5Mjg4MTE3OTA1OTI0ZS0wMSwtOC4wNzU1NDA0MTU0OTg2NTk4NjNlLTAxLC03LjQyMTUyMTYxNjUwMzg0NTU2NGUtMDEsLTkuNDAxNTY1OTE4NzI0MDY3NDM5ZS0wMSwtMy45NjUyMzczOTAxNjMxNzc2NjZlLTAxLC04LjU2MzAyODI2OTk1MjUxMjg3MmUtMDEsMS4yNTk4NzUzMzE1MTcwMTU0NzNlKzAwLDIuNDA5OTY3MzIwNDUxMjEwNjQ4ZS0wMSwtOS43MjMxNzkxODAyNjUxNzIzNjFlLTAxLC0yLjgwNDQ3NzgxNDY3NDU0MTM4MGUtMDEsLTEuMTgwMjg1NjA2MzUxMTkwNjE5ZSswMCwxLjAxMjE2ODI5NTE3NDc4NzkwMmUrMDAsMS4zODQxODY3MjQ1ODA4MjAxNDllKzAwDQo2LjA5OTk5OTk5OTk5OTk5OTY0NWUrMDAsMi43OTk5OTk5OTk5OTk5OTk4MjJlKzAwLDQuNzAwMDAwMDAwMDAwMDAwMTc4ZSswMCwxLjE5OTk5OTk5OTk5OTk5OTk1NmUrMDAsMS4yNTIwMDE5ODI3NTMwMzEzMTdlKzAwLC0xLjE0NDY5MjYzMTI0MjU5NzU2OWUrMDAsLTkuMTI2NzAxOTcyNjE3NTkxNTg1ZS0wMiwtNC4wMTU3MDY3NTUxMjkxNTkyMDBlLTAxLDUuNjIwMTMxMDU5MTQxODE2MzIxZS0wMSwtMS4wMDc5MDk4MDMyODM4OTgwMDllKzAwLC02Ljc1ODkxNjk0MDAxMDE2NTYzMGUtMDEsLTQuMTMyMTcwMjgzNTE4MDgwNjg5ZS0wMSwxLjUzMjg4NDY5MTMyNDIzODg3OWUtMDEsNi45NDEyODcwODEzNzg4NjQwNzdlLTAxLC0zLjI4NzI3NjkyNzM2NjA3NzkwNWUtMDEsNi42Mzk2NTA3NTUyNjIyMTg1OTVlLTAxLDguMjIwNzYzNTY3OTcxMzc3NTI4ZS0wMSwtMi4xMzIxNTIzNjg3MTgyMTAzNDVlLTAxLC0xLjI0NTY1ODEzMjg2NTU5NjkwMWUrMDAsLTEuMTcxMTkwMzM1NDM0MTQwNDE3ZSswMCw1LjkxNzI2OTc1MTUxNTY4MjQ2M2UtMDEsLTQuNzYyMjQ0MzYzMTQ2Njk0MzA0ZS0wMSwtMS43MTI2MjkzMjI2ODI0NTUxNTdlKzAwLDYuMTI5NTIzNjgxODMwMDA1ODQzZS0wMSwxLjI5NTU0NTIwNTQ2MjE4OTY1M2UtMDEsLTEuNDA1OTY3MDgxMTQyNjI4MzYxZSswMCwxLjE3OTQxOTk4MTIwMjY0NTc5NWUrMDAsOC4zNjYzNTk4NzE1Nzc0OTQ1MDBlLTAxLDEuMzg3NDUyNTEyOTAxNzkzMTExZS0wMSwtMS4yNzQzMTkzNjc3MzQ0MTY4OTdlKzAwLC0xLjQwMjMzMDUzMjg4NTI4MzA4OGUrMDAsLTMuMDcwNjg0ODY4NDE0MzY1MDU0ZS0wMSwtMS43MTM5MTUzODk1NTAyODk0MzZlKzAwLDQuMDUwODAyNzMxODQ0ODU0MTc2ZS0wMSwtMS40MTA4MjMzMTMzODAzMzY1MDhlKzAwLDEuNjQ5MTI3MjkyNTQ2OTg2MDM0ZS0wMSwtMi44ODEzMTQ1MjcyNjcyNjQxMTRlLTAxLDcuMTE3ODUyNjgwOTcwNDQxMjE1ZS0wMSwtOS4zNzk0NzU5NTI2MTQ4ODE4NzNlLTAxLDIuNzM3Mjk0NDk1MjQ3MjQwMDAwZS0wMSwtMS4zOTQ4NDAxOTI4MzQ2NDM0NDRlKzAwLDcuOTU1NDk1NTE3Njk0MDcwMDQwZS0wMSwtMS4xNDk2MTc2NjI3NzQ5NDY4NjllLTAxLDQuOTU4NTA2Njg5NjU0MzAzOTY3ZS0wMQ0KNi40MDAwMDAwMDAwMDAwMDAzNTVlKzAwLDIuODk5OTk5OTk5OTk5OTk5OTExZSswMCw0LjI5OTk5OTk5OTk5OTk5OTgyMmUrMDAsMS4zMDAwMDAwMDAwMDAwMDAwNDRlKzAwLC0xLjMyMDUyNTM0NjgyODAzMjI0M2UrMDAsNC45OTA4NDI3NTY3MTc2NjU1MjllLTAxLDMuMDYyMDMzOTYzMDM3MDg1MTk0ZS0wMSwzLjYzNjk3ODkyNzEzMzYzMTEzNGUtMDEsMy4xMjYzMzk2MzAxMzk4NTk5MzhlLTAxLC0xLjkzNDYzODgyNzkwMzQ3NzM1NGUtMDEsMS4yNDEyOTkyMjAzMTU5OTA5MzdlKzAwLC0xLjU1ODk3OTg1NzY1NzAzNTcyOGUtMDEsLTcuMzkxNjkyMDAzOTA4Mjg2NzM0ZS0wMSwtNS44NzI2MTkzMzY4OTM4NTkwOTNlLTAyLC05LjUwNTE3OTQ1NDQ0NTMwMjc2N2UtMDEsLTQuNjM5OTY0MjMzMzA4NDQwMTAwZS0wMSwtMS43NzI0NjYxNjE4OTM5ODg4MTJlLTAxLC0zLjc5NTU0MTIwNjQ1ODU5OTE1OWUtMDEsMS45OTM5NzA3MjgwNTQ4NTc0MjJlLTAxLDEuOTQ1NzYxMzkxMzA2MzI2NzQ5ZSswMCw1LjcwOTQ5ODM5ODQ2MTIwNDY2MGUtMDEsMS4wNzIzMDA2NDcyODgwOTEzODBlKzAwLC01LjAzNzA5NDM3MzY4MjM2NTkwMGUtMDEsLTUuODcwMTYyODg1MDUxNDg1MzEzZS0wMSwtMy43ODE3ODA0Njg5Mjk4OTcyNzZlLTAxLDguNTI4ODkwOTcyNjg4NzcyOTQyZS0wMSwtMi4xNDgxMTg0NzgyMzA4OTc3NDNlKzAwLC0xLjAzMzE2NDc3NTI5MTM2NzI5OWUrMDAsMS4wMjMzNTg0NjgzNDIxOTg4MThlLTAxLC0yLjI0MDkyMzY3MDYyOTI4NzA0NmUtMDEsMS45Njc3Mjk2ODIxNDMwNDU4ODhlKzAwLDQuNDc2ODMyMTU3NDI2NTYzNDg1ZS0wMSwtNi42MjE5MTQ0MzUzMDQ4MDc2MTFlLTAxLC0xLjU3NzYwNzA2ODUzOTM0NzI5MGUrMDAsLTMuNDA1NjAwMzQ5Mzc4NjIyOTkzZS0wMSwtMS4zMDMyMjAwODI2Nzg0MTQ2MDRlKzAwLDQuNjY3NTA2NTA0MTg0MzUxNjQ2ZS0wMSwxLjYxMTA2MzIyMjQxNjc4NDUxM2UtMDEsMy4yMDAzMTkzMjA5MjczMTI4NjFlLTAxLDIuMDc5MTc2NjY0Nzk1MDM3MTU1ZSswMCwtOS4wNzQ2NTk4MTQyMDI5NzY2MjdlLTAxLC0xLjkyNDA0MjA3Nzk1OTA2NzUwOWUtMDEsLTEuMjEyNTE1NzQ0NDg4OTA4OTc1ZSswMCwtOC4wNTk4NTE2MTUwMTI1NDQ4NzllLTAyDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "6OYiRjb74HJ47HYxjw\u002BoYg==", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "ETag": "\u00220x8DAA274BE6FAF09\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:45:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "bBZQ3Wu5Wqo=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:50:47 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "aa08403b-a5bb-440c-a08c-bbf2b273d6f3", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "921fbdcc-8251-498a-975c-dbfd10345ab8", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/iris-mltable/MLTable", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:52 GMT", - "x-ms-meta-name": "4e6f537a-6692-4afb-9a83-1d8c7ceeed98", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "b9ea0058-308d-4b96-abea-46613fcf9f1f", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:04:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "ETag": "\u00220x8DAA274BE78FC88\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:45:52 GMT", + "Date": "Wed, 12 Oct 2022 12:04:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -764,32 +685,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", + "Date": "Wed, 12 Oct 2022 12:04:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-55fd8c00b3822d760efa3ed7f2cfe2d8-db0a71a8dc383989-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6787c073810c634d37da6165a3ea768b-3320a2e54272aba3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bad15558-4afe-40e5-90e9-c5a8ff9dba73", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "adb915a3-f395-405c-bc4a-3244c0351ea8", + "x-ms-ratelimit-remaining-subscription-reads": "11919", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234552Z:bad15558-4afe-40e5-90e9-c5a8ff9dba73", - "x-request-time": "0.102" + "x-ms-routing-request-id": "JAPANEAST:20221012T120459Z:adb915a3-f395-405c-bc4a-3244c0351ea8", + "x-request-time": "0.136" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -804,17 +721,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -828,29 +745,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", + "Date": "Wed, 12 Oct 2022 12:05:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-81a1ad945ac49581c0bf9268819fc3f6-90a63abefe280ff6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-510ca15ca591a4eaebb6d5d4cb8d8b54-be5d5e6a9fe7c2b1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c73a2862-94b1-4ed3-a0d5-4145141c07b4", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "5454e78a-f1cc-4db8-b56f-dcb6684cc78b", + "x-ms-ratelimit-remaining-subscription-writes": "1154", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234552Z:c73a2862-94b1-4ed3-a0d5-4145141c07b4", - "x-request-time": "0.100" + "x-ms-routing-request-id": "JAPANEAST:20221012T120500Z:5454e78a-f1cc-4db8-b56f-dcb6684cc78b", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -858,132 +773,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:52 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:00 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "298", "Content-MD5": "HaKpUL6X1WimkPVJF2lHiQ==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:45:52 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "Zmxhdm9yczoNCiAgcHl0aG9uX2Z1bmN0aW9uOg0KICAgIGVudjogY29uZGEueWFtbA0KICAgIGxvYWRlcl9tb2R1bGU6IG1sZmxvdy5za2xlYXJuDQogICAgbW9kZWxfcGF0aDogbW9kZWwucGtsDQogICAgcHl0aG9uX3ZlcnNpb246IDMuNi44DQogIHNrbGVhcm46DQogICAgcGlja2xlZF9tb2RlbDogbW9kZWwucGtsDQogICAgc2VyaWFsaXphdGlvbl9mb3JtYXQ6IGNsb3VkcGlja2xlDQogICAgc2tsZWFybl92ZXJzaW9uOiAwLjIwLjMNCnV0Y190aW1lX2NyZWF0ZWQ6ICcyMDIxLTAyLTA1IDEwOjU5OjE5LjE4NDY0NicNCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "HaKpUL6X1WimkPVJF2lHiQ==", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "ETag": "\u00220x8DAA274BED455CE\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:45:52 GMT", + "Date": "Wed, 12 Oct 2022 12:05:00 GMT", + "ETag": "\u00220x8DA9F724DE7D1C0\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:50:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "7AUWpXK/pVo=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/model/iris_model/model.pkl", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1929", - "Content-MD5": "jwXgbm1ZMcfjlqDkUN4nNQ==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:45:52 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "gANjc2tsZWFybi5saW5lYXJfbW9kZWwubG9naXN0aWMKTG9naXN0aWNSZWdyZXNzaW9uCnEAKYFxAX1xAihYBwAAAHBlbmFsdHlxA1gCAAAAbDJxBFgEAAAAZHVhbHEFiVgDAAAAdG9scQZHPxo24uscQy1YAQAAAENxB0dAWQAAAAAAAFgNAAAAZml0X2ludGVyY2VwdHEIiFgRAAAAaW50ZXJjZXB0X3NjYWxpbmdxCUsBWAwAAABjbGFzc193ZWlnaHRxCk5YDAAAAHJhbmRvbV9zdGF0ZXELTlgGAAAAc29sdmVycQxYBAAAAHdhcm5xDVgIAAAAbWF4X2l0ZXJxDktkWAsAAABtdWx0aV9jbGFzc3EPaA1YBwAAAHZlcmJvc2VxEEsAWAoAAAB3YXJtX3N0YXJ0cRGJWAYAAABuX2pvYnNxEk5YCAAAAGNsYXNzZXNfcRNjbnVtcHkuY29yZS5tdWx0aWFycmF5Cl9yZWNvbnN0cnVjdApxFGNudW1weQpuZGFycmF5CnEVSwCFcRZDAWJxF4dxGFJxGShLAUsDhXEaY251bXB5CmR0eXBlCnEbWAIAAABPOHEcSwBLAYdxHVJxHihLA1gBAAAAfHEfTk5OSv////9K/////0s/dHEgYoldcSEoWAsAAABJcmlzLXNldG9zYXEiWA8AAABJcmlzLXZlcnNpY29sb3JxI1gOAAAASXJpcy12aXJnaW5pY2FxJGV0cSViWAUAAABjb2VmX3EmaBRoFUsAhXEnaBeHcShScSkoSwFLA0sshnEqaBtYAgAAAGY4cStLAEsBh3EsUnEtKEsDWAEAAAA8cS5OTk5K/////0r/////SwB0cS9iiEIgBAAAAnC9OPx27D\u002BFxrYSL\u002BT7P3fp5e6XdhDADqRA12SyA0CiRrJtw8spwCDvsOBxdAbAMxjVtQivD8APqamPHAUNQDkOrrWVJBlAZa7RRiJf/b//ijY77WsZwNd3uIIhVhNApxeRVu21s7/KAN\u002BiBcbov4dfrhgyyt4/eaUXXnjewj\u002BIsheiMd4OwB2AlhjHzek/8FGctMyr2D/E6fkcU2nRv1vlkCT8yuO/O6VL6nRF6T\u002BaLUJKdM0TwIsqPtwOq\u002Bg/ognGcUkQxz\u002BEL/7fslT3P4dmrybGr8C/MWzjVuyasT9nNls9PI8LwN9g6KbYQfU/Qturc5jYtD8q5Ye/WiHgP4aISh0GPdM/YXT2rmOK2j\u002B1KSulsVrwv/iYj8TYzPw/2WBKglt11z8nipeUt20AQFIE3w9wCdW/2JeUWg610L\u002BryOs2b5seQOYy7VeO8/i/gA69PIqnrL\u002Bc58ZXA58DQIjpwKNp0/W/bEWcuBggrL/AGa1L\u002BCwXQD2yniIfGvu/GFvN8911iT8pBpsqcprWv6xLrvncYcs/oXDH\u002B9mT0j/97NSAKme2v3kgovZ8IOE/BpflLPPJ4r9KMT7BPyS\u002Bv64QS9U\u002BUOE/TgpSefGlvz9SNeHcWzwdwCC8B\u002Bt68vk/zMbI3XJQ079RJfxwUMITQIIK3gygq/i/jplVAQTy0b\u002BgiDqcrIoTQLPJCz7RTLU/5JLnSNdi0L9KuFY\u002Brhv9P8xRLRnJ7M\u002B/an0D\u002BHImtb8WbKYK5H20P5Vg4VEZJvs/XlsTEUSmpT9Ow12tVLzpP1m0PAHX1dS/IPnYKsSgz7\u002B2uWrWL53gP6JbpHyA59u/16DZFcZQvL9fS1Gk3\u002BQFwOdeO0tmNuY/iLbAPXx2vr/zeiCbKJDov/UHLgBu\u002Bcq/62\u002BrUCVb379XATPL5XUUQDu7M1IGLue/f78Fs3582T8\u002BoGrEPZcbwAAf/2F8PPQ/paW\u002BT/rV0r8WyGPi/L4aQOH7U9vNdgLAlY818F4vwL8MmL\u002BE83sDQDeQ93i6bPA/IoDFsriAvD9Ur6lUXXnHv8PUfyxv99o/B7ITT/2s0L9O79uxY3QAQLzHHAOiL8\u002B/oXqJc0ldwb9O1fwjz5wMQLoybdZLsva/n2/eEZf94T\u002B4F2Ty8FYRwAx82TD\u002BZq\u002B/WC/u2KrJrr8zMivVzZP4v\u002BnnmRcJUPQ/UMahx7elwL9f8R7nqNDDP0jX8ob/duK/HJyTEz9A1z8HGRdOFLsSwAPIjxxLuPU/3drnKWmn0D9ZZ\u002BntpG4DQKYXsp4/j9Q/D/iJyG1Gzj/\u002Bxm\u002B8TkD0vyGCJ3kWi/s/8E2sesF9uD9piFSmPE4UwEP09ERLL/g/LB3GFbH0uz/R8CaCamTgv46Z4d2/UcM/v7rDuBMKnj9u3FKa3q3FP0GoOyuk2eg/cTB0cTFiWAoAAABpbnRlcmNlcHRfcTJoFGgVSwCFcTNoF4dxNFJxNShLAUsDhXE2aC2JQxiy0R7odhThPzGSfyGIphlAYNIKFMA\u002B/L9xN3RxOGJYBwAAAG5faXRlcl9xOWgUaBVLAIVxOmgXh3E7UnE8KEsBSwGFcT1oG1gCAAAAaTRxPksASwGHcT9ScUAoSwNoLk5OTkr/////Sv////9LAHRxQWKJQwQKAAAAcUJ0cUNiWBAAAABfc2tsZWFybl92ZXJzaW9ucURYBgAAADAuMjAuM3FFdWIu", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "jwXgbm1ZMcfjlqDkUN4nNQ==", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "ETag": "\u00220x8DAA274BED7D7C9\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:45:52 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "rRMKK3s489A=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:50:50 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "51476e36-8cf8-416d-bf8b-25916df42b46", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "0a84439e-8a55-4b45-b30c-152bf4c097e6", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:45:52 GMT", - "x-ms-meta-name": "bb1ffd33-3487-4368-b984-07d047bcd111", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "dcb4f691-b600-4926-922b-f81bfe21d5e4", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:05:00 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:45:51 GMT", - "ETag": "\u00220x8DAA274BEE0FE30\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:45:52 GMT", + "Date": "Wed, 12 Oct 2022 12:05:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -991,7 +847,7 @@ "Connection": "keep-alive", "Content-Length": "2606", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1023,7 +879,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c577b594-3497-4cd5-b811-dfe339626a6d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db5e7941-8b47-4a43-b6ff-7c9d765449c5/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -1052,7 +908,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/afd38eb3-b2c4-49db-b1ad-2dc05e6031c2", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53651e6f-94ce-4a84-a639-f24a49915b45", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -1073,22 +929,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5030", + "Content-Length": "5076", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:45:57 GMT", + "Date": "Wed, 12 Oct 2022 12:05:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-02a634f80bf0a8563c1616336193fba7-d762926f67da3f9e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-420e9be9afbd0ddc7a03fc2cf6314187-5a58598c87159a98-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65dd1bc3-2b0a-4f9b-b7ab-5fc2ffbf48e3", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "93850042-5da7-483a-b999-aa19a61ec01d", + "x-ms-ratelimit-remaining-subscription-writes": "1105", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234557Z:65dd1bc3-2b0a-4f9b-b7ab-5fc2ffbf48e3", - "x-request-time": "3.254" + "x-ms-routing-request-id": "JAPANEAST:20221012T120508Z:93850042-5da7-483a-b999-aa19a61ec01d", + "x-request-time": "3.322" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1119,7 +975,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1127,7 +984,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -1149,7 +1007,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c577b594-3497-4cd5-b811-dfe339626a6d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/db5e7941-8b47-4a43-b6ff-7c9d765449c5/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -1178,7 +1036,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/afd38eb3-b2c4-49db-b1ad-2dc05e6031c2", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53651e6f-94ce-4a84-a639-f24a49915b45", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -1209,8 +1067,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:45:57.1372706\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:05:07.6606876\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json index a8cbf025ad2f1..319ad7106dc4e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:36 GMT", + "Date": "Wed, 12 Oct 2022 11:58:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-5bfd9774c1e69fc08324a65b219fa010-c3e058d0c9e649c3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-00d1d8255761186628e0aa240cdc3f81-a148973e1a5d0717-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7262d9c0-2b16-48b4-968f-daa9ffaa0323", - "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-correlation-request-id": "cd570a53-49ef-4667-a095-01bd5a563171", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234037Z:7262d9c0-2b16-48b4-968f-daa9ffaa0323", - "x-request-time": "0.245" + "x-ms-routing-request-id": "JAPANEAST:20221012T115827Z:cd570a53-49ef-4667-a095-01bd5a563171", + "x-request-time": "0.268" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:37 GMT", + "Date": "Wed, 12 Oct 2022 11:58:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d2e8caf8bbf86c35932b45f5c4d937a3-9bd7c6c26388f4fe-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-34f50314468ff78ad7b82aa0cfca79e9-60e7bb22ba9ebe91-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dec470b-7f54-4ec6-adfb-bdb7cf3ff6fa", - "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-correlation-request-id": "d0ca7c24-ba52-4b7f-b28a-67df2d7a514a", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234038Z:4dec470b-7f54-4ec6-adfb-bdb7cf3ff6fa", - "x-request-time": "0.124" + "x-ms-routing-request-id": "JAPANEAST:20221012T115830Z:d0ca7c24-ba52-4b7f-b28a-67df2d7a514a", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:38 GMT", + "Date": "Wed, 12 Oct 2022 11:58:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fd6a97c155ab3c778bfdb99007a1d936-cddf92ee096db28e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ee090581f9201b7d9e8ba17eb3c07c4b-edce97949f048770-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": "8fe978f6-4425-46b1-9bc5-d70cb4e07135", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "cb717298-0330-4d19-9670-261597459cf4", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234039Z:8fe978f6-4425-46b1-9bc5-d70cb4e07135", - "x-request-time": "0.456" + "x-ms-routing-request-id": "JAPANEAST:20221012T115830Z:cb717298-0330-4d19-9670-261597459cf4", + "x-request-time": "0.104" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:40:38 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "1008", "Content-MD5": "A0kqxUaINw78oUjIcFQevw==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:40:39 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lDQoNCnBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKCkNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tY29tcG9uZW50QV9pbnB1dCIsIHR5cGU9c3RyKQ0KcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1jb21wb25lbnRBX291dHB1dCIsIHR5cGU9c3RyKQ0KDQpwcmludCgiSGVsbG8gUHl0aG9uIFdvcmxkLi4uXG5JJ20gY29tcG9uZW50QSA6LSkiKQ0KDQphcmdzID0gcGFyc2VyLnBhcnNlX2FyZ3MoKQ0KDQpwcmludCgiY29tcG9uZW50QV9pbnB1dCBwYXRoOiAlcyIgJSBhcmdzLmNvbXBvbmVudEFfaW5wdXQpDQpwcmludCgiY29tcG9uZW50QV9vdXRwdXQgcGF0aDogJXMiICUgYXJncy5jb21wb25lbnRBX291dHB1dCkNCg0KcHJpbnQoImZpbGVzIGluIGlucHV0IHBhdGg6ICIpDQphcnIgPSBvcy5saXN0ZGlyKGFyZ3MuY29tcG9uZW50QV9pbnB1dCkNCnByaW50KGFycikNCg0KZm9yIGZpbGVuYW1lIGluIGFycjoNCiAgICBwcmludCgicmVhZGluZyBmaWxlOiAlcyAuLi4iICUgZmlsZW5hbWUpDQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLmNvbXBvbmVudEFfaW5wdXQsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6DQogICAgICAgIHByaW50KGhhbmRsZS5yZWFkKCkpDQoNCmN1cl90aW1lX3N0ciA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWS0lSC0lTS0lUyIpDQoNCnByaW50KCJXcml0aW5nIGZpbGU6ICVzIiAlIG9zLnBhdGguam9pbihhcmdzLmNvbXBvbmVudEFfb3V0cHV0LCAiZmlsZS0iICsgY3VyX3RpbWVfc3RyICsgIi50eHQiKSkNCndpdGggb3Blbihvcy5wYXRoLmpvaW4oYXJncy5jb21wb25lbnRBX291dHB1dCwgImZpbGUtIiArIGN1cl90aW1lX3N0ciArICIudHh0IiksICJ3dCIpIGFzIHRleHRfZmlsZToNCiAgICBwcmludChmIkxvZ2dpbmcgZGF0ZSB0aW1lOiB7Y3VyX3RpbWVfc3RyfSIsIGZpbGU9dGV4dF9maWxlKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "A0kqxUaINw78oUjIcFQevw==", - "Date": "Thu, 29 Sep 2022 23:40:38 GMT", - "ETag": "\u00220x8DAA27403EDF662\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:39 GMT", + "Date": "Wed, 12 Oct 2022 11:58:30 GMT", + "ETag": "\u00220x8DAAC45E12BB708\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:35:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "t5foRsBWem0=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:35:35 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "44b595eb-9779-41f7-ac0e-b908b6086d9e", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/componentA_src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:39 GMT", - "x-ms-meta-name": "4b9f7ac7-15ad-4fbb-a017-48a28b9c611d", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:31 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:40:38 GMT", - "ETag": "\u00220x8DAA27403F76AE5\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:39 GMT", + "Date": "Wed, 12 Oct 2022 11:58:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b9f7ac7-15ad-4fbb-a017-48a28b9c611d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/44b595eb-9779-41f7-ac0e-b908b6086d9e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -295,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "303", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -305,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentA_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "833", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:39 GMT", + "Date": "Wed, 12 Oct 2022 11:58:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b9f7ac7-15ad-4fbb-a017-48a28b9c611d/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9762efd08c7cea6426f3860257bee7d5-94b5b282ebe2600c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5068a44bd3898a83838d65c3cc927c18-40b9da6efdf813ac-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ff4eb78-8fdd-4e7b-9647-a6444719a204", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "9f22d3dd-97e9-4739-996e-28c79f64ed4c", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234039Z:7ff4eb78-8fdd-4e7b-9647-a6444719a204", - "x-request-time": "0.385" + "x-ms-routing-request-id": "JAPANEAST:20221012T115831Z:9f22d3dd-97e9-4739-996e-28c79f64ed4c", + "x-request-time": "0.180" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b9f7ac7-15ad-4fbb-a017-48a28b9c611d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/44b595eb-9779-41f7-ac0e-b908b6086d9e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -341,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentA_src" }, "systemData": { - "createdAt": "2022-09-29T23:40:39.7635966\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:36.2579297\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:39.7635966\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:58:31.6473618\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -362,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "805", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -372,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --componentA_input ${{inputs.componentA_input}} --componentA_output ${{outputs.componentA_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b9f7ac7-15ad-4fbb-a017-48a28b9c611d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/44b595eb-9779-41f7-ac0e-b908b6086d9e/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -399,24 +351,24 @@ "Cache-Control": "no-cache", "Content-Length": "1814", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:43 GMT", + "Date": "Wed, 12 Oct 2022 11:58:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-633679c6613ac1771af17e77a4ca3328-3d50a79adfbcd222-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dbbe23d56bb8dfdb50b889cf07faf228-7ba35014415d6455-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e51d05dd-acc2-425f-b4ae-435269353e92", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "e17a1d1b-f11f-4c6a-af22-f00787785076", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234044Z:e51d05dd-acc2-425f-b4ae-435269353e92", - "x-request-time": "3.695" + "x-ms-routing-request-id": "JAPANEAST:20221012T115833Z:e17a1d1b-f11f-4c6a-af22-f00787785076", + "x-request-time": "1.193" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8837e38d-8cf5-42e5-8568-e3f21ed706e6", - "name": "8837e38d-8cf5-42e5-8568-e3f21ed706e6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/faa88f06-3128-4d25-ac59-7deeab109d82", + "name": "faa88f06-3128-4d25-ac59-7deeab109d82", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -426,7 +378,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "8837e38d-8cf5-42e5-8568-e3f21ed706e6", + "version": "faa88f06-3128-4d25-ac59-7deeab109d82", "display_name": "componentA", "is_deterministic": "True", "type": "command", @@ -441,7 +393,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b9f7ac7-15ad-4fbb-a017-48a28b9c611d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/44b595eb-9779-41f7-ac0e-b908b6086d9e/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -451,11 +403,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:40:43.3334568\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:38.2735219\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:43.3334568\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:35:38.7713662\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -467,32 +419,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:43 GMT", + "Date": "Wed, 12 Oct 2022 11:58:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-801cb783eefa7afb7aa28206cdcecf8f-880e522aabfd03df-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bc4ca9e5cac1fdca717a95021f9365bd-82c3ddf20c522907-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b97f9db-c2c5-49ed-8ed7-d4ebc5076c30", - "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-correlation-request-id": "1e47bc3c-49b8-4ad3-a812-c4e8dccd2b18", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234044Z:8b97f9db-c2c5-49ed-8ed7-d4ebc5076c30", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221012T115834Z:1e47bc3c-49b8-4ad3-a812-c4e8dccd2b18", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -507,17 +455,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -531,29 +479,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:43 GMT", + "Date": "Wed, 12 Oct 2022 11:58:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a067011e13b9ce21e799ab005eca81d0-e6f0178b4ead5598-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ad715c05f2a0264d9d1d0b2556b0f5eb-be2908b1b1246019-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": "bb20ac81-7293-4fa4-aca6-dc5b9dd7aa95", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "2a52f601-678e-4cb0-9f92-4431cb7fbb4a", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234044Z:bb20ac81-7293-4fa4-aca6-dc5b9dd7aa95", - "x-request-time": "0.091" + "x-ms-routing-request-id": "JAPANEAST:20221012T115834Z:2a52f601-678e-4cb0-9f92-4431cb7fbb4a", + "x-request-time": "0.106" }, "ResponseBody": { "secretsType": "AccountKey", @@ -561,98 +507,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:44 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:34 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:40:43 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "1008", "Content-MD5": "1HkhAvMtfYHv8fBMXlSMOg==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:40:44 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lDQoNCnBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKCkNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tY29tcG9uZW50Ql9pbnB1dCIsIHR5cGU9c3RyKQ0KcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1jb21wb25lbnRCX291dHB1dCIsIHR5cGU9c3RyKQ0KDQpwcmludCgiSGVsbG8gUHl0aG9uIFdvcmxkLi4uXG5JJ20gY29tcG9uZW50QiA6LSkiKQ0KDQphcmdzID0gcGFyc2VyLnBhcnNlX2FyZ3MoKQ0KDQpwcmludCgiY29tcG9uZW50Ql9pbnB1dCBwYXRoOiAlcyIgJSBhcmdzLmNvbXBvbmVudEJfaW5wdXQpDQpwcmludCgiY29tcG9uZW50Ql9vdXRwdXQgcGF0aDogJXMiICUgYXJncy5jb21wb25lbnRCX291dHB1dCkNCg0KcHJpbnQoImZpbGVzIGluIGlucHV0IHBhdGg6ICIpDQphcnIgPSBvcy5saXN0ZGlyKGFyZ3MuY29tcG9uZW50Ql9pbnB1dCkNCnByaW50KGFycikNCg0KZm9yIGZpbGVuYW1lIGluIGFycjoNCiAgICBwcmludCgicmVhZGluZyBmaWxlOiAlcyAuLi4iICUgZmlsZW5hbWUpDQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLmNvbXBvbmVudEJfaW5wdXQsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6DQogICAgICAgIHByaW50KGhhbmRsZS5yZWFkKCkpDQoNCmN1cl90aW1lX3N0ciA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWS0lSC0lTS0lUyIpDQoNCnByaW50KCJXcml0aW5nIGZpbGU6ICVzIiAlIG9zLnBhdGguam9pbihhcmdzLmNvbXBvbmVudEJfb3V0cHV0LCAiZmlsZS0iICsgY3VyX3RpbWVfc3RyICsgIi50eHQiKSkNCndpdGggb3Blbihvcy5wYXRoLmpvaW4oYXJncy5jb21wb25lbnRCX291dHB1dCwgImZpbGUtIiArIGN1cl90aW1lX3N0ciArICIudHh0IiksICJ3dCIpIGFzIHRleHRfZmlsZToNCiAgICBwcmludChmIkxvZ2dpbmcgZGF0ZSB0aW1lOiB7Y3VyX3RpbWVfc3RyfSIsIGZpbGU9dGV4dF9maWxlKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "1HkhAvMtfYHv8fBMXlSMOg==", - "Date": "Thu, 29 Sep 2022 23:40:43 GMT", - "ETag": "\u00220x8DAA2740733A785\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:44 GMT", + "Date": "Wed, 12 Oct 2022 11:58:34 GMT", + "ETag": "\u00220x8DAAC45E3FF2D9B\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:35:40 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "/JmThOL5jDw=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:35:40 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "0ffec665-c5d8-40c3-87ca-523c495de556", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/componentB_src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:44 GMT", - "x-ms-meta-name": "1760ccbc-fc2a-4ab2-83e3-77ae9e1d4df9", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:40:44 GMT", - "ETag": "\u00220x8DAA274073CF4F9\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:44 GMT", + "Date": "Wed, 12 Oct 2022 11:58:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1760ccbc-fc2a-4ab2-83e3-77ae9e1d4df9/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ffec665-c5d8-40c3-87ca-523c495de556/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -660,7 +581,7 @@ "Connection": "keep-alive", "Content-Length": "303", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -670,31 +591,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentB_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "833", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:44 GMT", + "Date": "Wed, 12 Oct 2022 11:58:34 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1760ccbc-fc2a-4ab2-83e3-77ae9e1d4df9/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6dde1ea85b29b8eed18a5437d2123ecb-cf82240b1813273a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-97073a81a8ded2ceb01ee83331814c80-499985fbac863b75-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bded1e5-899e-4ab5-ad12-e8ef4138b432", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "85e2bf9f-196a-4279-b8e2-6b2a14d2d4fc", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234045Z:6bded1e5-899e-4ab5-ad12-e8ef4138b432", - "x-request-time": "0.383" + "x-ms-routing-request-id": "JAPANEAST:20221012T115835Z:85e2bf9f-196a-4279-b8e2-6b2a14d2d4fc", + "x-request-time": "0.181" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1760ccbc-fc2a-4ab2-83e3-77ae9e1d4df9/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ffec665-c5d8-40c3-87ca-523c495de556/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -706,14 +627,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentB_src" }, "systemData": { - "createdAt": "2022-09-29T23:40:45.2637665\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:40.9916774\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:45.2637665\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:58:35.7122719\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -727,7 +648,7 @@ "Connection": "keep-alive", "Content-Length": "805", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -737,7 +658,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --componentB_input ${{inputs.componentB_input}} --componentB_output ${{outputs.componentB_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1760ccbc-fc2a-4ab2-83e3-77ae9e1d4df9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ffec665-c5d8-40c3-87ca-523c495de556/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -764,24 +685,24 @@ "Cache-Control": "no-cache", "Content-Length": "1814", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:48 GMT", + "Date": "Wed, 12 Oct 2022 11:58:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e0b581f5aa62cf2f8ffac015ae01e5f5-ecb7fd8efafe1fd7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-175e40040827e423e080d958161f93b5-24beaf4695f99d97-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbe037d3-759f-4d83-ab95-0ed1a36517d4", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "f17cde9f-5ccb-49c9-9990-7cde8e49c420", + "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234048Z:cbe037d3-759f-4d83-ab95-0ed1a36517d4", - "x-request-time": "3.341" + "x-ms-routing-request-id": "JAPANEAST:20221012T115837Z:f17cde9f-5ccb-49c9-9990-7cde8e49c420", + "x-request-time": "1.182" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/744fa3bb-b4fc-48b4-bf40-e092e022dccb", - "name": "744fa3bb-b4fc-48b4-bf40-e092e022dccb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e69fb585-d383-4f5f-9b49-e5b812cdf658", + "name": "e69fb585-d383-4f5f-9b49-e5b812cdf658", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -791,7 +712,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "744fa3bb-b4fc-48b4-bf40-e092e022dccb", + "version": "e69fb585-d383-4f5f-9b49-e5b812cdf658", "display_name": "componentB", "is_deterministic": "True", "type": "command", @@ -806,7 +727,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1760ccbc-fc2a-4ab2-83e3-77ae9e1d4df9/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0ffec665-c5d8-40c3-87ca-523c495de556/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -816,11 +737,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:40:48.3244519\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:43.1040435\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:48.3244519\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:35:43.5712054\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -832,32 +753,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:48 GMT", + "Date": "Wed, 12 Oct 2022 11:58:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-69ce83c0d57429ea4ee1676ba90da17d-10aac9b3b6852539-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6ba3e180e6e0dccb3d02d2d83608d58f-a1e5d4ed838be854-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0c213a5-ae71-4e26-9937-e72014d2bc1a", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "cba57310-fd56-468f-b879-6d1731e1e10c", + "x-ms-ratelimit-remaining-subscription-reads": "11970", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234049Z:e0c213a5-ae71-4e26-9937-e72014d2bc1a", - "x-request-time": "0.106" + "x-ms-routing-request-id": "JAPANEAST:20221012T115838Z:cba57310-fd56-468f-b879-6d1731e1e10c", + "x-request-time": "0.090" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -872,17 +789,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -896,29 +813,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:48 GMT", + "Date": "Wed, 12 Oct 2022 11:58:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-411bdd5c42507c33435ec8b00d256e33-1504fad3d4a50384-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-74a5ca2cec7c343909a7c5f2cf23bc1b-45b57697b20e00f6-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": "7fe9b536-0610-4389-971b-1de17d237e60", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "9ec14861-5410-48fd-b7c1-30c4c3aab3b3", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234049Z:7fe9b536-0610-4389-971b-1de17d237e60", - "x-request-time": "0.112" + "x-ms-routing-request-id": "JAPANEAST:20221012T115839Z:9ec14861-5410-48fd-b7c1-30c4c3aab3b3", + "x-request-time": "0.503" }, "ResponseBody": { "secretsType": "AccountKey", @@ -926,98 +841,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:49 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:40:48 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "1008", "Content-MD5": "dFP4Jw1QhQH4bNqA3XPF7Q==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:40:49 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lDQoNCnBhcnNlciA9IGFyZ3BhcnNlLkFyZ3VtZW50UGFyc2VyKCkNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tY29tcG9uZW50Q19pbnB1dCIsIHR5cGU9c3RyKQ0KcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1jb21wb25lbnRDX291dHB1dCIsIHR5cGU9c3RyKQ0KDQpwcmludCgiSGVsbG8gUHl0aG9uIFdvcmxkLi4uXG5JJ20gY29tcG9uZW50QyA6LSkiKQ0KDQphcmdzID0gcGFyc2VyLnBhcnNlX2FyZ3MoKQ0KDQpwcmludCgiY29tcG9uZW50Q19pbnB1dCBwYXRoOiAlcyIgJSBhcmdzLmNvbXBvbmVudENfaW5wdXQpDQpwcmludCgiY29tcG9uZW50Q19vdXRwdXQgcGF0aDogJXMiICUgYXJncy5jb21wb25lbnRDX291dHB1dCkNCg0KcHJpbnQoImZpbGVzIGluIGlucHV0IHBhdGg6ICIpDQphcnIgPSBvcy5saXN0ZGlyKGFyZ3MuY29tcG9uZW50Q19pbnB1dCkNCnByaW50KGFycikNCg0KZm9yIGZpbGVuYW1lIGluIGFycjoNCiAgICBwcmludCgicmVhZGluZyBmaWxlOiAlcyAuLi4iICUgZmlsZW5hbWUpDQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLmNvbXBvbmVudENfaW5wdXQsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6DQogICAgICAgIHByaW50KGhhbmRsZS5yZWFkKCkpDQoNCmN1cl90aW1lX3N0ciA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWS0lSC0lTS0lUyIpDQoNCnByaW50KCJXcml0aW5nIGZpbGU6ICVzIiAlIG9zLnBhdGguam9pbihhcmdzLmNvbXBvbmVudENfb3V0cHV0LCAiZmlsZS0iICsgY3VyX3RpbWVfc3RyICsgIi50eHQiKSkNCndpdGggb3Blbihvcy5wYXRoLmpvaW4oYXJncy5jb21wb25lbnRDX291dHB1dCwgImZpbGUtIiArIGN1cl90aW1lX3N0ciArICIudHh0IiksICJ3dCIpIGFzIHRleHRfZmlsZToNCiAgICBwcmludChmIkxvZ2dpbmcgZGF0ZSB0aW1lOiB7Y3VyX3RpbWVfc3RyfSIsIGZpbGU9dGV4dF9maWxlKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "dFP4Jw1QhQH4bNqA3XPF7Q==", - "Date": "Thu, 29 Sep 2022 23:40:48 GMT", - "ETag": "\u00220x8DAA2740A26B0B2\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:49 GMT", + "Date": "Wed, 12 Oct 2022 11:58:39 GMT", + "ETag": "\u00220x8DAAC45E6FDCC80\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:35:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "HO03DTKBaeA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:35:45 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "a4574a2a-86b4-4586-a2a3-ffdc2ff45d07", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/componentC_src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:40:49 GMT", - "x-ms-meta-name": "02e84bcc-0575-483a-b132-7898951be9eb", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 11:58:40 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:40:48 GMT", - "ETag": "\u00220x8DAA2740A2FD71E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:40:49 GMT", + "Date": "Wed, 12 Oct 2022 11:58:40 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/02e84bcc-0575-483a-b132-7898951be9eb/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a4574a2a-86b4-4586-a2a3-ffdc2ff45d07/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1025,7 +915,7 @@ "Connection": "keep-alive", "Content-Length": "303", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1035,31 +925,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentC_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "833", + "Content-Length": "832", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:49 GMT", + "Date": "Wed, 12 Oct 2022 11:58:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/02e84bcc-0575-483a-b132-7898951be9eb/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0d5ae2d27ac1bd91ddff156c4596a526-c21dc6ea26344ceb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-73b64c55956e6c2cf262d658b7056066-5205a298aee10246-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efaf7424-f48f-4c39-9f7b-35b93d74401b", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "17cc0991-ab98-4c80-b389-489a7eca5206", + "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234050Z:efaf7424-f48f-4c39-9f7b-35b93d74401b", - "x-request-time": "0.402" + "x-ms-routing-request-id": "JAPANEAST:20221012T115840Z:17cc0991-ab98-4c80-b389-489a7eca5206", + "x-request-time": "0.190" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/02e84bcc-0575-483a-b132-7898951be9eb/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a4574a2a-86b4-4586-a2a3-ffdc2ff45d07/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1071,14 +961,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/componentC_src" }, "systemData": { - "createdAt": "2022-09-29T23:40:50.0485603\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:46.024117\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:50.0485603\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:58:40.7759045\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1092,7 +982,7 @@ "Connection": "keep-alive", "Content-Length": "805", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1102,7 +992,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --componentC_input ${{inputs.componentC_input}} --componentC_output ${{outputs.componentC_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/02e84bcc-0575-483a-b132-7898951be9eb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a4574a2a-86b4-4586-a2a3-ffdc2ff45d07/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -1127,26 +1017,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1812", + "Content-Length": "1813", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:53 GMT", + "Date": "Wed, 12 Oct 2022 11:58:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-596eca5b639d59c18464ce304af7c7f9-72f2e63a197412f4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-08087ffb04f0aa434f7cd2b6da9d92f2-388916770ea464a8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23c08311-b75d-483b-bd6c-d6b58522bd44", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "00dbdd77-2940-4d08-96ff-d5de7baad002", + "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234054Z:23c08311-b75d-483b-bd6c-d6b58522bd44", - "x-request-time": "3.698" + "x-ms-routing-request-id": "JAPANEAST:20221012T115842Z:00dbdd77-2940-4d08-96ff-d5de7baad002", + "x-request-time": "1.190" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94ae585c-8fd5-42c7-aa24-6a16e1679f6e", - "name": "94ae585c-8fd5-42c7-aa24-6a16e1679f6e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b310ea33-aadf-487b-9222-a8916a1a3a58", + "name": "b310ea33-aadf-487b-9222-a8916a1a3a58", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1156,7 +1046,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "94ae585c-8fd5-42c7-aa24-6a16e1679f6e", + "version": "b310ea33-aadf-487b-9222-a8916a1a3a58", "display_name": "componentC", "is_deterministic": "True", "type": "command", @@ -1171,7 +1061,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/02e84bcc-0575-483a-b132-7898951be9eb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a4574a2a-86b4-4586-a2a3-ffdc2ff45d07/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1181,17 +1071,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:40:53.683943\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:35:47.957717\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:40:53.683943\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:35:48.4426355\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1199,7 +1089,7 @@ "Connection": "keep-alive", "Content-Length": "2953", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1241,7 +1131,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8837e38d-8cf5-42e5-8568-e3f21ed706e6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/faa88f06-3128-4d25-ac59-7deeab109d82" }, "component_b_job": { "resources": null, @@ -1267,7 +1157,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/744fa3bb-b4fc-48b4-bf40-e092e022dccb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e69fb585-d383-4f5f-9b49-e5b812cdf658" }, "component_c_job": { "resources": null, @@ -1293,7 +1183,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94ae585c-8fd5-42c7-aa24-6a16e1679f6e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b310ea33-aadf-487b-9222-a8916a1a3a58" } }, "outputs": { @@ -1318,22 +1208,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5782", + "Content-Length": "5828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:40:59 GMT", + "Date": "Wed, 12 Oct 2022 11:58:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c533fe5448ed41114b3277da60c391a3-aa400a99762d7c7d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3d4b1479b9b788b0ae095b4bbf8c4432-ae21152f5c7e63c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7351a585-fa6c-4c68-9ebf-b0cb54c3b82e", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "846eccb7-eb1c-4fe6-9deb-c3448bbaa301", + "x-ms-ratelimit-remaining-subscription-writes": "1172", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234100Z:7351a585-fa6c-4c68-9ebf-b0cb54c3b82e", - "x-request-time": "4.263" + "x-ms-routing-request-id": "JAPANEAST:20221012T115850Z:846eccb7-eb1c-4fe6-9deb-c3448bbaa301", + "x-request-time": "2.921" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1364,7 +1254,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1372,7 +1263,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1408,7 +1300,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8837e38d-8cf5-42e5-8568-e3f21ed706e6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/faa88f06-3128-4d25-ac59-7deeab109d82" }, "component_b_job": { "resources": null, @@ -1434,7 +1326,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/744fa3bb-b4fc-48b4-bf40-e092e022dccb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e69fb585-d383-4f5f-9b49-e5b812cdf658" }, "component_c_job": { "resources": null, @@ -1460,7 +1352,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/94ae585c-8fd5-42c7-aa24-6a16e1679f6e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b310ea33-aadf-487b-9222-a8916a1a3a58" } }, "inputs": { @@ -1494,8 +1386,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:40:59.5994169\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:58:49.5473544\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json index aa4d483e6c317..b1eb3d43e4ed1 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json @@ -7,78 +7,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1000", + "Content-Length": "907", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:26 GMT", + "Date": "Wed, 12 Oct 2022 12:07:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-981066824726d47c4d9245b4e3cc782d-82b464bb42696f5e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5e22c6b-0855-4759-bb3e-c7b13afafaba", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTUS2:20220929T234727Z:b5e22c6b-0855-4759-bb3e-c7b13afafaba", - "x-request-time": "0.066" + "x-ms-correlation-request-id": "7bb6b7ea-6ede-4258-a593-ed803296226d", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "JAPANEAST:20221012T120709Z:7bb6b7ea-6ede-4258-a593-ed803296226d", + "x-request-time": "0.092" }, "ResponseBody": { - "error": { - "code": "UserError", - "message": "pipeline_component_training container was not found.", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "f171dbf4fbb34ac45b8eee0e5520685b", - "request": "c53d11be7e382750" - } - } - }, - { - "type": "Environment", - "info": { - "value": "master" - } - }, - { - "type": "Location", - "info": { - "value": "westus2" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-29T23:47:27.0363265\u002B00:00" - } + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1", + "name": "0.0.1", + "type": "Microsoft.MachineLearningServices/workspaces/data/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": false, + "dataUri": "azureml://workspaces/e61cd5e2-512f-475e-9842-5e2a973993b8/datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data/", + "dataType": "uri_folder" }, - { - "type": "InnerError", - "info": { - "value": { - "code": "NotFoundError", - "innerError": null - } - } + "systemData": { + "createdAt": "2022-09-27T07:14:27.0671587\u002B00:00", + "createdBy": "Brynn Yin", + "createdByType": "User", + "lastModifiedAt": "2022-09-27T07:14:27.0843574\u002B00:00" } - ] - } + } + ] } }, { @@ -88,260 +62,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:26 GMT", + "Date": "Wed, 12 Oct 2022 12:07:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ce99621e864936a38cfd406b31741374-4f1f68f55e7586e6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-076561d99c8de96b360aeeacd4077651-8367aedb552a2338-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": "922091f2-9178-4f21-a543-8b6597027ac2", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234727Z:922091f2-9178-4f21-a543-8b6597027ac2", - "x-request-time": "0.079" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", - "name": "workspaceblobstore", - "type": "Microsoft.MachineLearningServices/workspaces/datastores", - "properties": { - "description": null, - "tags": null, - "properties": null, - "isDefault": true, - "credentials": { - "credentialsType": "AccountKey" - }, - "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", - "endpoint": "core.windows.net", - "protocol": "https", - "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" - }, - "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", - "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", - "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "lastModifiedByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:47:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9e6d2b1d77be8e768d1206d522731c2f-3d92300a0e9d3a5f-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": "e06cccf7-4c8f-4ceb-90bd-7bc7f34f59a1", - "x-ms-ratelimit-remaining-subscription-writes": "1164", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234727Z:e06cccf7-4c8f-4ceb-90bd-7bc7f34f59a1", - "x-request-time": "0.096" - }, - "ResponseBody": { - "secretsType": "AccountKey", - "key": "dGhpcyBpcyBmYWtlIGtleQ==" - } - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample.csv", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:27 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "508", - "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", - "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:47:26 GMT", - "ETag": "\u00220x8DAA2741556AC06\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:08 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", - "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:41:08 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "72cab38d-4569-46a4-a4b0-0ba143159543", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e073ba76-2f78-4900-9ea8-be1fb5baab29", - "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", - "RequestMethod": "HEAD", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:27 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": null, - "StatusCode": 404, - "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:26 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "225", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" - }, - "RequestBody": { - "properties": { - "properties": {}, - "tags": {}, - "isAnonymous": false, - "isArchived": false, - "dataType": "uri_folder", - "dataUri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data" - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "847", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:27 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1?api-version=2022-05-01", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8de2e40d2a0c330a108c9eea23bd3d3f-9c99ab602a282597-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cb1d62f-7560-4c04-b6aa-f3ab32ccfb75", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "0990eb93-ac13-4378-baec-b3a15500052a", + "x-ms-ratelimit-remaining-subscription-reads": "11900", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234728Z:9cb1d62f-7560-4c04-b6aa-f3ab32ccfb75", - "x-request-time": "0.389" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1", - "name": "0.0.1", - "type": "Microsoft.MachineLearningServices/workspaces/data/versions", - "properties": { - "description": null, - "tags": {}, - "properties": {}, - "isArchived": false, - "isAnonymous": false, - "dataUri": "azureml://subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000/datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data/", - "dataType": "uri_folder" - }, - "systemData": { - "createdAt": "2022-09-29T23:47:28.064021\u002B00:00", - "createdBy": "Aditi Singhal", - "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:28.0803003\u002B00:00" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (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": "Thu, 29 Sep 2022 23:47:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fedffca2665e0801b31658819b24be9d-dbe6144ca96e2e52-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": "9c90b354-3b66-466a-8a6b-e9eeb06726f6", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234728Z:9c90b354-3b66-466a-8a6b-e9eeb06726f6", - "x-request-time": "0.086" + "x-ms-routing-request-id": "JAPANEAST:20221012T120710Z:0990eb93-ac13-4378-baec-b3a15500052a", + "x-request-time": "0.137" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -356,17 +98,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -380,29 +122,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:28 GMT", + "Date": "Wed, 12 Oct 2022 12:07:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-6ea72d35b9f521e81e2ba262579cdcdd-56056eb0caa01430-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8333b4ea56c015ffce4fa927f047a2ae-06aa4d62e8286b92-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e446ac0c-78ed-4e2c-836b-138223bc3aef", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "42b36b85-8062-4892-831f-e1908c9dbe6e", + "x-ms-ratelimit-remaining-subscription-writes": "1136", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234729Z:e446ac0c-78ed-4e2c-836b-138223bc3aef", - "x-request-time": "0.104" + "x-ms-routing-request-id": "JAPANEAST:20221012T120710Z:42b36b85-8062-4892-831f-e1908c9dbe6e", + "x-request-time": "0.126" }, "ResponseBody": { "secretsType": "AccountKey", @@ -410,26 +150,26 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:29 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:10 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "1459", - "Content-MD5": "AopRoh0TIOT2l3zRkNs9IQ==", + "Content-Length": "1502", + "Content-MD5": "EQ00rYDpw0NQnGfvdnx9Rw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:47:28 GMT", - "ETag": "\u00220x8DAA274E13EFD98\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:50 GMT", + "Date": "Wed, 12 Oct 2022 12:07:10 GMT", + "ETag": "\u00220x8DA9F72E5D94A1C\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -438,32 +178,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:46:50 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:05 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "6252a1a5-9b39-4c98-a81c-d1f2029ec2bc", + "x-ms-meta-name": "8e861c90-5655-43a8-867a-b874df7c5336", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:29 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:10 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:28 GMT", + "Date": "Wed, 12 Oct 2022 12:07:10 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -471,12 +211,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -484,7 +224,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -494,35 +234,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:28 GMT", + "Date": "Wed, 12 Oct 2022 12:07:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c47c8d6ff3ad67181ba759cf49ddb071-c7db0414e83e1b8f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fc11b79f0f287ed8abe5244b026aa321-af2fc83db19c3f79-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "241a9968-f6e6-451c-93c0-509f00caa100", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "c4b2d5f8-d38a-444d-b098-61b6f0f6b13e", + "x-ms-ratelimit-remaining-subscription-writes": "1078", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234729Z:241a9968-f6e6-451c-93c0-509f00caa100", - "x-request-time": "0.262" + "x-ms-routing-request-id": "JAPANEAST:20221012T120711Z:c4b2d5f8-d38a-444d-b098-61b6f0f6b13e", + "x-request-time": "0.201" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -534,14 +270,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-29T23:46:51.0673083\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:08.2880744\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:29.6914555\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:07:11.6514378\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -555,7 +291,7 @@ "Connection": "keep-alive", "Content-Length": "1282", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -566,7 +302,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -607,24 +343,24 @@ "Cache-Control": "no-cache", "Content-Length": "2348", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:31 GMT", + "Date": "Wed, 12 Oct 2022 12:07:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ddc9a5fec9afae57be88f231b3b0ee24-ff74c62ca4892a1b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cbf5bcbfd76fe3db281dd705170f2b5c-73f42513b231b056-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8801fcb9-63f9-4651-80b6-f7f2388f2a71", - "x-ms-ratelimit-remaining-subscription-writes": "1140", + "x-ms-correlation-request-id": "9aaca055-cef9-45c4-b1e7-93d1f1626efb", + "x-ms-ratelimit-remaining-subscription-writes": "1077", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234732Z:8801fcb9-63f9-4651-80b6-f7f2388f2a71", - "x-request-time": "2.546" + "x-ms-routing-request-id": "JAPANEAST:20221012T120713Z:9aaca055-cef9-45c4-b1e7-93d1f1626efb", + "x-request-time": "1.240" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4813700e-ab7c-4ed7-81db-7a592c8e6732", - "name": "4813700e-ab7c-4ed7-81db-7a592c8e6732", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1e09cff7-9573-45ac-aed4-cf29c8f9badd", + "name": "1e09cff7-9573-45ac-aed4-cf29c8f9badd", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -634,7 +370,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4813700e-ab7c-4ed7-81db-7a592c8e6732", + "version": "1e09cff7-9573-45ac-aed4-cf29c8f9badd", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -664,7 +400,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -674,11 +410,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:54.4293699\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:25.4088899\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:54.9131165\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:25.9437504\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -690,32 +426,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:31 GMT", + "Date": "Wed, 12 Oct 2022 12:07:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a1324f8c95a5b87793cbbf9c0f363c90-a56f56ea051f496c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-66ccb3a9de4b6d5300b6e1bbabe5b9c1-27dbb0b7d0746b01-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4575eee7-4c49-4a40-b85d-7b96d077740e", - "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-correlation-request-id": "4cae0a6c-03a9-4758-a71c-d157baa6e851", + "x-ms-ratelimit-remaining-subscription-reads": "11899", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234732Z:4575eee7-4c49-4a40-b85d-7b96d077740e", - "x-request-time": "0.107" + "x-ms-routing-request-id": "JAPANEAST:20221012T120714Z:4cae0a6c-03a9-4758-a71c-d157baa6e851", + "x-request-time": "0.121" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -730,17 +462,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -754,29 +486,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:32 GMT", + "Date": "Wed, 12 Oct 2022 12:07:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b21df62f6380f80742ba51c3e1c3a8cb-a98b7051ee73adc6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-af30acf372b98fc5fc9ffe3e9969e258-cab35e3bb0ef9471-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f46bfe6d-1350-4566-adc7-9a85725a943a", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "2ec90465-fa33-4c66-9f58-a69db557b29d", + "x-ms-ratelimit-remaining-subscription-writes": "1135", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234733Z:f46bfe6d-1350-4566-adc7-9a85725a943a", - "x-request-time": "0.094" + "x-ms-routing-request-id": "JAPANEAST:20221012T120714Z:2ec90465-fa33-4c66-9f58-a69db557b29d", + "x-request-time": "0.090" }, "ResponseBody": { "secretsType": "AccountKey", @@ -784,26 +514,26 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:33 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "910", - "Content-MD5": "\u002B1r7nD6TWo52vxs0R/FCxg==", + "Content-Length": "939", + "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:47:32 GMT", - "ETag": "\u00220x8DAA274E47484E0\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:55 GMT", + "Date": "Wed, 12 Oct 2022 12:07:14 GMT", + "ETag": "\u00220x8DA9F72EB0B8DD0\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -812,32 +542,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:46:55 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:14 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "7063ef60-8c19-4cb7-82a8-0649945eb636", + "x-ms-meta-name": "b2174e1b-ad3a-4c13-a542-266dbfdd2173", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:33 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:32 GMT", + "Date": "Wed, 12 Oct 2022 12:07:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -845,12 +575,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -858,7 +588,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -868,35 +598,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:33 GMT", + "Date": "Wed, 12 Oct 2022 12:07:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2be8e9154015a24b9f7903a582077a04-14bfad2ee4a9f796-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-58cdec52392839daadbb1fa7542f845c-36008de4d7ebb10c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71163654-c9e8-475a-a093-ab8f7f8be6eb", - "x-ms-ratelimit-remaining-subscription-writes": "1139", + "x-ms-correlation-request-id": "ee5f8d88-da80-4348-9bdb-9231e9eadc26", + "x-ms-ratelimit-remaining-subscription-writes": "1076", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234734Z:71163654-c9e8-475a-a093-ab8f7f8be6eb", - "x-request-time": "0.182" + "x-ms-routing-request-id": "JAPANEAST:20221012T120715Z:ee5f8d88-da80-4348-9bdb-9231e9eadc26", + "x-request-time": "0.179" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -908,14 +634,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-29T23:46:56.4085282\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:15.5985909\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:33.9199089\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:07:15.5534927\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -929,7 +655,7 @@ "Connection": "keep-alive", "Content-Length": "1021", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -940,7 +666,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy scoring component", @@ -970,26 +696,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1969", + "Content-Length": "1968", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:37 GMT", + "Date": "Wed, 12 Oct 2022 12:07:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c8ce21e734d875815a2a63f94b20fcb2-b6e23dcea064004d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5b8c933b767f114fe485c45d2e928da9-f95711f809ed2580-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bdd7420-d48d-426e-b2f2-4b0a55624e15", - "x-ms-ratelimit-remaining-subscription-writes": "1138", + "x-ms-correlation-request-id": "e2bf28bb-bb2f-4e97-9da3-f2bd9604dce7", + "x-ms-ratelimit-remaining-subscription-writes": "1075", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234738Z:8bdd7420-d48d-426e-b2f2-4b0a55624e15", - "x-request-time": "4.590" + "x-ms-routing-request-id": "JAPANEAST:20221012T120717Z:e2bf28bb-bb2f-4e97-9da3-f2bd9604dce7", + "x-request-time": "1.213" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ba380ca-c395-4d79-aab3-62bc577325e7", - "name": "4ba380ca-c395-4d79-aab3-62bc577325e7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bbf79f-6ab8-43d9-8a37-12dd884c8edf", + "name": "28bbf79f-6ab8-43d9-8a37-12dd884c8edf", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -999,7 +725,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4ba380ca-c395-4d79-aab3-62bc577325e7", + "version": "28bbf79f-6ab8-43d9-8a37-12dd884c8edf", "display_name": "Score Data", "is_deterministic": "True", "type": "command", @@ -1019,7 +745,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1029,11 +755,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:59.6282666\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:29.860711\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:00.1045573\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:30.3406562\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1045,32 +771,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:39 GMT", + "Date": "Wed, 12 Oct 2022 12:07:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-89afb2ee2fcf0b690c765c06a9d6e7c4-d65a4ed8c151c4e6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b15d557764db782e552b7ed3e26d68d2-e783d76b8414611c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ae805d0-8e51-47ab-81ca-ab2a0d489031", - "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-correlation-request-id": "9edde896-a8d3-427d-9efe-e565862913c0", + "x-ms-ratelimit-remaining-subscription-reads": "11898", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234739Z:8ae805d0-8e51-47ab-81ca-ab2a0d489031", - "x-request-time": "0.104" + "x-ms-routing-request-id": "JAPANEAST:20221012T120718Z:9edde896-a8d3-427d-9efe-e565862913c0", + "x-request-time": "0.105" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1085,17 +807,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1109,29 +831,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:39 GMT", + "Date": "Wed, 12 Oct 2022 12:07:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f6fdd6bcffdea4ab72ef5ea46ba3c5ab-baeda010471aa430-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-be305fd48c317264f37ed1898719184e-671641ceb8abbc9f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d62734ff-a842-4cfa-b391-815592dcf007", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "3221c910-83a6-4a7a-b080-4a1344a264d5", + "x-ms-ratelimit-remaining-subscription-writes": "1134", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234739Z:d62734ff-a842-4cfa-b391-815592dcf007", - "x-request-time": "0.086" + "x-ms-routing-request-id": "JAPANEAST:20221012T120718Z:3221c910-83a6-4a7a-b080-4a1344a264d5", + "x-request-time": "0.110" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1139,26 +859,26 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "770", - "Content-MD5": "eVnVLloYfT16aDnyQ2oJnQ==", + "Content-Length": "795", + "Content-MD5": "DCyaJK0A7h/5O4tRl1ENtA==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:47:38 GMT", - "ETag": "\u00220x8DAA274E77806E3\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:47:00 GMT", + "Date": "Wed, 12 Oct 2022 12:07:18 GMT", + "ETag": "\u00220x8DA9F72EEB59622\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1167,32 +887,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:47:00 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "719762c7-52a7-48b3-a513-732eaadaa846", + "x-ms-meta-name": "cd16855c-6d4c-4857-9716-b1edd07c83a5", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:19 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:38 GMT", + "Date": "Wed, 12 Oct 2022 12:07:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1200,12 +920,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1213,7 +933,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1223,35 +943,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "826", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:40 GMT", + "Date": "Wed, 12 Oct 2022 12:07:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-37ee62ee0254fdcb8789136a7222c6fb-02ba6679662c0138-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dee58bf55adcc9e7699d69315a16940f-5d8bcceebf8cb949-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d879e6a-bd77-46f3-84af-d84d3492cf02", - "x-ms-ratelimit-remaining-subscription-writes": "1137", + "x-ms-correlation-request-id": "34db5ed2-6d3d-46e9-ad87-fce2ba403aa8", + "x-ms-ratelimit-remaining-subscription-writes": "1074", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234740Z:0d879e6a-bd77-46f3-84af-d84d3492cf02", - "x-request-time": "0.186" + "x-ms-routing-request-id": "JAPANEAST:20221012T120720Z:34db5ed2-6d3d-46e9-ad87-fce2ba403aa8", + "x-request-time": "0.202" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1263,14 +979,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-29T23:47:01.6607459\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:21.4446896\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:40.0706974\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:07:20.364908\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1284,7 +1000,7 @@ "Connection": "keep-alive", "Content-Length": "957", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1295,7 +1011,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy evaluate component", @@ -1324,24 +1040,24 @@ "Cache-Control": "no-cache", "Content-Length": "1845", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:42 GMT", + "Date": "Wed, 12 Oct 2022 12:07:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4ed2d40611cf3eab05e2abd49c52a1c8-7def87c466f2f3bf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d3eb31cabb8dd61407354c6401067e06-fedac71b86e39404-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "872c58cb-d519-4bb5-9fe3-b0808fc8fefe", - "x-ms-ratelimit-remaining-subscription-writes": "1136", + "x-ms-correlation-request-id": "b4f246b5-0280-4166-a482-ccaec9e3e92d", + "x-ms-ratelimit-remaining-subscription-writes": "1073", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234742Z:872c58cb-d519-4bb5-9fe3-b0808fc8fefe", - "x-request-time": "2.503" + "x-ms-routing-request-id": "JAPANEAST:20221012T120722Z:b4f246b5-0280-4166-a482-ccaec9e3e92d", + "x-request-time": "1.235" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395", - "name": "5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a58e33b7-5aa1-4836-8710-7e7767e65701", + "name": "a58e33b7-5aa1-4836-8710-7e7767e65701", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1351,7 +1067,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395", + "version": "a58e33b7-5aa1-4836-8710-7e7767e65701", "display_name": "Eval Model", "is_deterministic": "True", "type": "command", @@ -1367,7 +1083,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1377,11 +1093,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:05.3166848\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:35.2142682\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:05.8060134\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:35.7149188\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1395,7 +1111,7 @@ "Connection": "keep-alive", "Content-Length": "3374", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1476,7 +1192,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4813700e-ab7c-4ed7-81db-7a592c8e6732" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1e09cff7-9573-45ac-aed4-cf29c8f9badd" }, "score_with_sample_data": { "resources": null, @@ -1506,7 +1222,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ba380ca-c395-4d79-aab3-62bc577325e7" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bbf79f-6ab8-43d9-8a37-12dd884c8edf" }, "eval_with_sample_data": { "resources": null, @@ -1532,7 +1248,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a58e33b7-5aa1-4836-8710-7e7767e65701" } }, "_source": "DSL", @@ -1543,26 +1259,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1933", + "Content-Length": "1934", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:45 GMT", + "Date": "Wed, 12 Oct 2022 12:07:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d6e1525439ec188fb8e3cb0e5b4a45f1-3dbe88f770d3ab1a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-530739a50f3bdd6888eda4aaa1f2213f-5c2184f2a1fd4d67-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "910cd760-111d-49f6-9875-fda060eefc45", - "x-ms-ratelimit-remaining-subscription-writes": "1135", + "x-ms-correlation-request-id": "1f537f08-a8ac-4130-b484-29065478ad14", + "x-ms-ratelimit-remaining-subscription-writes": "1072", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234745Z:910cd760-111d-49f6-9875-fda060eefc45", - "x-request-time": "2.079" + "x-ms-routing-request-id": "JAPANEAST:20221012T120725Z:1f537f08-a8ac-4130-b484-29065478ad14", + "x-request-time": "2.007" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4a17932-c98f-415d-a76a-92faa46198f0", - "name": "a4a17932-c98f-415d-a76a-92faa46198f0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b6fc390-c3e8-4c50-9c63-0c8f980347aa", + "name": "6b6fc390-c3e8-4c50-9c63-0c8f980347aa", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1572,9 +1288,9 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a4a17932-c98f-415d-a76a-92faa46198f0", + "version": "6b6fc390-c3e8-4c50-9c63-0c8f980347aa", "display_name": "train_pipeline_component", - "is_deterministic": "True", + "is_deterministic": "False", "type": "pipeline", "description": "E2E dummy train-score-eval pipeline with components defined via yaml.", "inputs": { @@ -1613,11 +1329,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:44.5494815\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:07:25.0375214\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:44.5494815\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:07:25.0375214\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1631,7 +1347,7 @@ "Connection": "keep-alive", "Content-Length": "3374", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1712,7 +1428,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4813700e-ab7c-4ed7-81db-7a592c8e6732" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1e09cff7-9573-45ac-aed4-cf29c8f9badd" }, "score_with_sample_data": { "resources": null, @@ -1742,7 +1458,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ba380ca-c395-4d79-aab3-62bc577325e7" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bbf79f-6ab8-43d9-8a37-12dd884c8edf" }, "eval_with_sample_data": { "resources": null, @@ -1768,7 +1484,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a58e33b7-5aa1-4836-8710-7e7767e65701" } }, "_source": "DSL", @@ -1779,26 +1495,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1933", + "Content-Length": "1932", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:47 GMT", + "Date": "Wed, 12 Oct 2022 12:07:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d6d3349946eef5620dbd84df48b3c56b-926885a3eaaa6b32-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8d0f13641cd4fc6533d38624d8e0e933-d6c068c642696435-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "060986e3-e946-44db-af74-fd33b6fe8180", - "x-ms-ratelimit-remaining-subscription-writes": "1134", + "x-ms-correlation-request-id": "9a65e22e-c39c-4165-bfc1-cba8b725abfa", + "x-ms-ratelimit-remaining-subscription-writes": "1071", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234747Z:060986e3-e946-44db-af74-fd33b6fe8180", - "x-request-time": "2.048" + "x-ms-routing-request-id": "JAPANEAST:20221012T120728Z:9a65e22e-c39c-4165-bfc1-cba8b725abfa", + "x-request-time": "2.061" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a0ab2a89-3aeb-44ec-9a25-13efcc43ebc2", - "name": "a0ab2a89-3aeb-44ec-9a25-13efcc43ebc2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f11defae-03c8-4437-ac79-5855dbd71d67", + "name": "f11defae-03c8-4437-ac79-5855dbd71d67", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1808,9 +1524,9 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a0ab2a89-3aeb-44ec-9a25-13efcc43ebc2", + "version": "f11defae-03c8-4437-ac79-5855dbd71d67", "display_name": "train_pipeline_component", - "is_deterministic": "True", + "is_deterministic": "False", "type": "pipeline", "description": "E2E dummy train-score-eval pipeline with components defined via yaml.", "inputs": { @@ -1849,11 +1565,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:46.9214405\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:07:27.691403\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:46.9214405\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:07:27.691403\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1865,32 +1581,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:47 GMT", + "Date": "Wed, 12 Oct 2022 12:07:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-1448fdbc88d17d1a3cc91bbf14065da6-06b9b3708b93875e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-90d95408feebc976c10fe865dccdcd46-8e212e41584217b5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0071f49-f449-42e5-bb69-d8c31093ec47", - "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-correlation-request-id": "bf9c53d2-e356-45d1-9d28-709018910497", + "x-ms-ratelimit-remaining-subscription-reads": "11897", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234747Z:a0071f49-f449-42e5-bb69-d8c31093ec47", - "x-request-time": "0.104" + "x-ms-routing-request-id": "JAPANEAST:20221012T120728Z:bf9c53d2-e356-45d1-9d28-709018910497", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1905,17 +1617,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1929,29 +1641,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:48 GMT", + "Date": "Wed, 12 Oct 2022 12:07:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-57317b536bb492039ab8d6b1ee9291f2-65d6243521bab622-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-387d7423a5358cfe51eadc17c74be96a-3aa42f36a9026ce5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35a28237-2bbd-4408-89b7-c4811d55aa23", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "9ad0e5d4-7f74-4f33-b177-cab41848220c", + "x-ms-ratelimit-remaining-subscription-writes": "1133", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234748Z:35a28237-2bbd-4408-89b7-c4811d55aa23", - "x-request-time": "0.097" + "x-ms-routing-request-id": "JAPANEAST:20221012T120729Z:9ad0e5d4-7f74-4f33-b177-cab41848220c", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1959,26 +1669,26 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:48 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:29 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "1320", - "Content-MD5": "lhdlP3AmfdrQn\u002BPzTAYfwA==", + "Content-Length": "1355", + "Content-MD5": "KDKfFAmtl5iN7Kbvl/m5/g==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:47:48 GMT", - "ETag": "\u00220x8DAA274EE0D7AA5\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:47:12 GMT", + "Date": "Wed, 12 Oct 2022 12:07:29 GMT", + "ETag": "\u00220x8DA9F730133AB37\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1987,32 +1697,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:47:11 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "19b1373b-4758-4cba-a7ca-f0631a2c8fdb", + "x-ms-meta-name": "48f94719-2664-43d6-80b4-1c5f7ada60a5", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:48 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:07:29 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:48 GMT", + "Date": "Wed, 12 Oct 2022 12:07:29 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2020,12 +1730,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2033,7 +1743,7 @@ "Connection": "keep-alive", "Content-Length": "301", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2043,35 +1753,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "831", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:48 GMT", + "Date": "Wed, 12 Oct 2022 12:07:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c90cc3a69d41cdd005584794b72a3c7e-f8c5be4af3ef0b60-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e30f5043f36221097b526c6bf35f3035-bd80b3813e4c30f8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c54a4b7-688c-4c78-a5dd-5d8aa867ace5", - "x-ms-ratelimit-remaining-subscription-writes": "1133", + "x-ms-correlation-request-id": "135719b9-2134-4628-86ea-c93e39865a42", + "x-ms-ratelimit-remaining-subscription-writes": "1070", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234748Z:9c54a4b7-688c-4c78-a5dd-5d8aa867ace5", - "x-request-time": "0.179" + "x-ms-routing-request-id": "JAPANEAST:20221012T120730Z:135719b9-2134-4628-86ea-c93e39865a42", + "x-request-time": "0.186" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -2083,14 +1789,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src" }, "systemData": { - "createdAt": "2022-09-29T23:47:12.5103381\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:52.6373527\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:48.6222936\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:07:30.1760384\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -2104,7 +1810,7 @@ "Connection": "keep-alive", "Content-Length": "1436", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2115,7 +1821,7 @@ "isArchived": false, "componentSpec": { "command": "python compare2.py $[[--model1 ${{inputs.model1}}]] $[[--eval_result1 ${{inputs.eval_result1}}]] $[[--model2 ${{inputs.model2}}]] $[[--eval_result2 ${{inputs.eval_result2}}]] --best_model ${{outputs.best_model}} --best_result ${{outputs.best_result}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy comparison module takes two models as input and outputs the better one", @@ -2160,24 +1866,24 @@ "Cache-Control": "no-cache", "Content-Length": "2401", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:53 GMT", + "Date": "Wed, 12 Oct 2022 12:07:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-900b5de22c1d968de5a1f97d9d9542ab-e23f453706e97b72-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fb1a6b3c9fb0ccf63d3bb3b371832624-a2f88dcf427ce9c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f70a7e4b-427b-4e53-8da5-33ee3d90b553", - "x-ms-ratelimit-remaining-subscription-writes": "1132", + "x-ms-correlation-request-id": "4d16fc57-7dd8-4d3f-81f5-0cc1d6a0caf3", + "x-ms-ratelimit-remaining-subscription-writes": "1069", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234753Z:f70a7e4b-427b-4e53-8da5-33ee3d90b553", - "x-request-time": "4.571" + "x-ms-routing-request-id": "JAPANEAST:20221012T120732Z:4d16fc57-7dd8-4d3f-81f5-0cc1d6a0caf3", + "x-request-time": "1.342" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/09131183-3118-4271-a7e5-2e9d98e72875", - "name": "09131183-3118-4271-a7e5-2e9d98e72875", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c18c3d5d-9751-4acf-831c-41efdf544037", + "name": "c18c3d5d-9751-4acf-831c-41efdf544037", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -2187,7 +1893,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "09131183-3118-4271-a7e5-2e9d98e72875", + "version": "c18c3d5d-9751-4acf-831c-41efdf544037", "display_name": "Compare 2 Models", "is_deterministic": "True", "type": "command", @@ -2218,7 +1924,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -2228,17 +1934,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:15.9588497\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:46.7255951\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:16.4652882\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:47.2305493\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2246,7 +1952,7 @@ "Connection": "keep-alive", "Content-Length": "3786", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2294,7 +2000,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4a17932-c98f-415d-a76a-92faa46198f0" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b6fc390-c3e8-4c50-9c63-0c8f980347aa" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2319,7 +2025,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a0ab2a89-3aeb-44ec-9a25-13efcc43ebc2" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f11defae-03c8-4437-ac79-5855dbd71d67" }, "compare2_models": { "resources": null, @@ -2361,7 +2067,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/09131183-3118-4271-a7e5-2e9d98e72875" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c18c3d5d-9751-4acf-831c-41efdf544037" } }, "outputs": { @@ -2381,22 +2087,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6992", + "Content-Length": "7040", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:48:01 GMT", + "Date": "Wed, 12 Oct 2022 12:07:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3c388abc46dd799fd646a102e70e47ab-640070cd8a0c3e68-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2e9185e18b242e22c9fb5f5c2062b789-f5978cfd81037f41-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9d55f31-c26e-4d13-9ede-fe26939a0c69", - "x-ms-ratelimit-remaining-subscription-writes": "1131", + "x-ms-correlation-request-id": "6a6e1965-e9f1-45b1-9da2-c7c156f0f9f2", + "x-ms-ratelimit-remaining-subscription-writes": "1068", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234801Z:b9d55f31-c26e-4d13-9ede-fe26939a0c69", - "x-request-time": "6.608" + "x-ms-routing-request-id": "JAPANEAST:20221012T120740Z:6a6e1965-e9f1-45b1-9da2-c7c156f0f9f2", + "x-request-time": "3.323" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2418,7 +2124,7 @@ "azureml.pipelineComponent": "pipelinerun" }, "displayName": "pipeline_with_pipeline_component", - "status": "Running", + "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { @@ -2427,7 +2133,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -2435,7 +2142,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -2471,7 +2179,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4a17932-c98f-415d-a76a-92faa46198f0" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b6fc390-c3e8-4c50-9c63-0c8f980347aa" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2496,7 +2204,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a0ab2a89-3aeb-44ec-9a25-13efcc43ebc2" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f11defae-03c8-4437-ac79-5855dbd71d67" }, "compare2_models": { "resources": null, @@ -2538,7 +2246,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/09131183-3118-4271-a7e5-2e9d98e72875" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c18c3d5d-9751-4acf-831c-41efdf544037" } }, "inputs": { @@ -2576,8 +2284,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:47:57.6243468\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:07:39.5255731\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json index 3936dab917e2e..cb6d1248c9ac6 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:49 GMT", + "Date": "Wed, 12 Oct 2022 12:06:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e82f0b443ff5f71d36220cec0c84dc89-0cb421a62041865c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-23f333745e5ef48f72184256986034ef-48a54a8cdebbc52e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8faf894e-b804-476d-9316-88bf34d8b6f7", - "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-correlation-request-id": "20c64ba8-e468-404f-b703-d0cc5a5087aa", + "x-ms-ratelimit-remaining-subscription-reads": "11907", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234649Z:8faf894e-b804-476d-9316-88bf34d8b6f7", - "x-request-time": "0.083" + "x-ms-routing-request-id": "JAPANEAST:20221012T120629Z:20c64ba8-e468-404f-b703-d0cc5a5087aa", + "x-request-time": "0.126" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +43,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,29 +67,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:49 GMT", + "Date": "Wed, 12 Oct 2022 12:06:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c46a24b3bcb6d8440008495971e5993c-131aaaaecddd0d71-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-df034071c13b5069e86865aee9a31831-71561e2a44f5a0b9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "309c0698-555c-4f1c-8e75-1f682a7f696d", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "b33f9d2f-b80b-47cc-b9b2-80e0b1fe61f5", + "x-ms-ratelimit-remaining-subscription-writes": "1142", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234650Z:309c0698-555c-4f1c-8e75-1f682a7f696d", - "x-request-time": "0.104" + "x-ms-routing-request-id": "JAPANEAST:20221012T120630Z:b33f9d2f-b80b-47cc-b9b2-80e0b1fe61f5", + "x-request-time": "0.116" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,98 +95,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:50 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:49 GMT", + "Accept-Ranges": "bytes", + "Content-Length": "1502", + "Content-MD5": "EQ00rYDpw0NQnGfvdnx9Rw==", + "Content-Type": "application/octet-stream", + "Date": "Wed, 12 Oct 2022 12:06:30 GMT", + "ETag": "\u00220x8DA9F72E5D94A1C\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1459", - "Content-MD5": "AopRoh0TIOT2l3zRkNs9IQ==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:50 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aApmcm9tIHV1aWQgaW1wb3J0IHV1aWQ0CmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lCmltcG9ydCBvcwoKcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoInRyYWluIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS10cmFpbmluZ19kYXRhIiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggdG8gdHJhaW5pbmcgZGF0YSIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbWF4X2Vwb2NocyIsIHR5cGU9aW50LCBoZWxwPSJNYXggIyBvZiBlcG9jaHMgZm9yIHRoZSB0cmFpbmluZyIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbGVhcm5pbmdfcmF0ZSIsIHR5cGU9ZmxvYXQsIGhlbHA9IkxlYXJuaW5nIHJhdGUiKQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWxlYXJuaW5nX3JhdGVfc2NoZWR1bGUiLCB0eXBlPXN0ciwgaGVscD0iTGVhcm5pbmcgcmF0ZSBzY2hlZHVsZSIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbW9kZWxfb3V0cHV0IiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggb2Ygb3V0cHV0IG1vZGVsIikKCmFyZ3MgPSBwYXJzZXIucGFyc2VfYXJncygpCgpwcmludCgiaGVsbG8gdHJhaW5pbmcgd29ybGQuLi4iKQoKbGluZXMgPSBbCiAgICBmIlRyYWluaW5nIGRhdGEgcGF0aDoge2FyZ3MudHJhaW5pbmdfZGF0YX0iLAogICAgZiJNYXggZXBvY2hzOiB7YXJncy5tYXhfZXBvY2hzfSIsCiAgICBmIkxlYXJuaW5nIHJhdGU6IHthcmdzLmxlYXJuaW5nX3JhdGV9IiwKICAgIGYiTGVhcm5pbmcgcmF0ZToge2FyZ3MubGVhcm5pbmdfcmF0ZV9zY2hlZHVsZX0iLAogICAgZiJNb2RlbCBvdXRwdXQgcGF0aDoge2FyZ3MubW9kZWxfb3V0cHV0fSIsCl0KCmZvciBsaW5lIGluIGxpbmVzOgogICAgcHJpbnQobGluZSkKCnByaW50KCJtb3VudGVkX3BhdGggZmlsZXM6ICIpCmFyciA9IG9zLmxpc3RkaXIoYXJncy50cmFpbmluZ19kYXRhKQpwcmludChhcnIpCgpmb3IgZmlsZW5hbWUgaW4gYXJyOgogICAgcHJpbnQoInJlYWRpbmcgZmlsZTogJXMgLi4uIiAlIGZpbGVuYW1lKQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLnRyYWluaW5nX2RhdGEsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6CiAgICAgICAgcHJpbnQoaGFuZGxlLnJlYWQoKSkKCgojIERvIHRoZSB0cmFpbiBhbmQgc2F2ZSB0aGUgdHJhaW5lZCBtb2RlbCBhcyBhIGZpbGUgaW50byB0aGUgb3V0cHV0IGZvbGRlci4KIyBIZXJlIG9ubHkgb3V0cHV0IGEgZHVtbXkgZGF0YSBmb3IgZGVtby4KY3VydGltZSA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWSAlSDolTTolUyIpCm1vZGVsID0gZiJUaGlzIGlzIGEgZHVtbXkgbW9kZWwgd2l0aCBpZDoge3N0cih1dWlkNCgpKX0gZ2VuZXJhdGVkIGF0OiB7Y3VydGltZX1cbiIKKFBhdGgoYXJncy5tb2RlbF9vdXRwdXQpIC8gIm1vZGVsLnR4dCIpLndyaXRlX3RleHQobW9kZWwpCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "AopRoh0TIOT2l3zRkNs9IQ==", - "Date": "Thu, 29 Sep 2022 23:46:49 GMT", - "ETag": "\u00220x8DAA274E135620B\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:50 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "ZOEbwpAd0Hc=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:05 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "8e861c90-5655-43a8-867a-b874df7c5336", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src/train.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:50 GMT", - "x-ms-meta-name": "6252a1a5-9b39-4c98-a81c-d1f2029ec2bc", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:46:49 GMT", - "ETag": "\u00220x8DAA274E13EFD98\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:50 GMT", + "Date": "Wed, 12 Oct 2022 12:06:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -200,7 +169,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -210,31 +179,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:50 GMT", + "Date": "Wed, 12 Oct 2022 12:06:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fbe0caaacf217eeb86a6c3bec6c77841-879b23714b44aab8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-44b8a3811898ff4deddd2ec786f5f46c-b07e374a3dbe3ccd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15d165d7-b0e2-4ded-9fdf-cd1893b80ab4", - "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-correlation-request-id": "0ba07563-1d08-46ca-ad22-ecd2b88dcb5d", + "x-ms-ratelimit-remaining-subscription-writes": "1089", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234651Z:15d165d7-b0e2-4ded-9fdf-cd1893b80ab4", - "x-request-time": "0.508" + "x-ms-routing-request-id": "JAPANEAST:20221012T120631Z:0ba07563-1d08-46ca-ad22-ecd2b88dcb5d", + "x-request-time": "0.200" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -246,14 +215,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-29T23:46:51.0673083\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:08.2880744\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:51.0673083\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:06:31.2457421\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -267,7 +236,7 @@ "Connection": "keep-alive", "Content-Length": "1282", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -278,7 +247,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -319,24 +288,24 @@ "Cache-Control": "no-cache", "Content-Length": "2348", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:54 GMT", + "Date": "Wed, 12 Oct 2022 12:06:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-541a7bcd9df6e83bdf52b439f8aa3754-93078c2850b1d450-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-18d00b8f0ea9eaed06c80e96c798aa6c-a9b780a94f87e0dd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdacd8c4-50fe-4ec1-af77-c8faa9c6c95d", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "1a929fb0-e63a-4e98-b15e-db0e92757cc9", + "x-ms-ratelimit-remaining-subscription-writes": "1088", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234655Z:cdacd8c4-50fe-4ec1-af77-c8faa9c6c95d", - "x-request-time": "3.338" + "x-ms-routing-request-id": "JAPANEAST:20221012T120633Z:1a929fb0-e63a-4e98-b15e-db0e92757cc9", + "x-request-time": "1.664" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4813700e-ab7c-4ed7-81db-7a592c8e6732", - "name": "4813700e-ab7c-4ed7-81db-7a592c8e6732", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1e09cff7-9573-45ac-aed4-cf29c8f9badd", + "name": "1e09cff7-9573-45ac-aed4-cf29c8f9badd", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -346,7 +315,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4813700e-ab7c-4ed7-81db-7a592c8e6732", + "version": "1e09cff7-9573-45ac-aed4-cf29c8f9badd", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -376,7 +345,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6252a1a5-9b39-4c98-a81c-d1f2029ec2bc/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8e861c90-5655-43a8-867a-b874df7c5336/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -386,11 +355,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:54.4293699\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:25.4088899\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:54.4293699\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:25.9437504\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -402,32 +371,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:54 GMT", + "Date": "Wed, 12 Oct 2022 12:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8c06c5544e2ae2fefb4980f7de0a488e-1375199bb7d52688-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c483ef71ab99430f8ea348bc0cd902d9-696648d17956718e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7dca5ff-c154-4af8-8fc1-b3402e042ab1", - "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-correlation-request-id": "0bace9e2-419f-4d06-9e15-a045bc0323c8", + "x-ms-ratelimit-remaining-subscription-reads": "11906", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234655Z:f7dca5ff-c154-4af8-8fc1-b3402e042ab1", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T120634Z:0bace9e2-419f-4d06-9e15-a045bc0323c8", + "x-request-time": "0.135" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -442,17 +407,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -466,29 +431,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:54 GMT", + "Date": "Wed, 12 Oct 2022 12:06:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f36b3ca2bdc13f343bde6dbe0109f597-0442b021b1c16e79-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5d9ed8e5dc06d55a3be7d56b5dfa466c-2f53159b6a66d1e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e657059-80e4-42a0-aa8a-13cc2b43cf00", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "39794931-4cc6-4a8d-8356-fcd583d99cf7", + "x-ms-ratelimit-remaining-subscription-writes": "1141", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234655Z:1e657059-80e4-42a0-aa8a-13cc2b43cf00", - "x-request-time": "0.087" + "x-ms-routing-request-id": "JAPANEAST:20221012T120635Z:39794931-4cc6-4a8d-8356-fcd583d99cf7", + "x-request-time": "0.157" }, "ResponseBody": { "secretsType": "AccountKey", @@ -496,98 +459,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:55 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:54 GMT", + "Accept-Ranges": "bytes", + "Content-Length": "939", + "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", + "Content-Type": "application/octet-stream", + "Date": "Wed, 12 Oct 2022 12:06:35 GMT", + "ETag": "\u00220x8DA9F72EB0B8DD0\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "910", - "Content-MD5": "\u002B1r7nD6TWo52vxs0R/FCxg==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:46:55 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aAoKcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoInNjb3JlIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1tb2RlbF9pbnB1dCIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIG9mIGlucHV0IG1vZGVsIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS10ZXN0X2RhdGEiLCB0eXBlPXN0ciwgaGVscD0iUGF0aCB0byB0ZXN0IGRhdGEiKQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLXNjb3JlX291dHB1dCIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIG9mIHNjb3Jpbmcgb3V0cHV0IikKCmFyZ3MgPSBwYXJzZXIucGFyc2VfYXJncygpCgpwcmludCgiaGVsbG8gc2NvcmluZyB3b3JsZC4uLiIpCgpsaW5lcyA9IFsKICAgIGYiTW9kZWwgcGF0aDoge2FyZ3MubW9kZWxfaW5wdXR9IiwKICAgIGYiVGVzdCBkYXRhIHBhdGg6IHthcmdzLnRlc3RfZGF0YX0iLAogICAgZiJTY29yaW5nIG91dHB1dCBwYXRoOiB7YXJncy5zY29yZV9vdXRwdXR9IiwKXQoKZm9yIGxpbmUgaW4gbGluZXM6CiAgICBwcmludChsaW5lKQoKIyBMb2FkIHRoZSBtb2RlbCBmcm9tIGlucHV0IHBvcnQKIyBIZXJlIG9ubHkgcHJpbnQgdGhlIG1vZGVsIGFzIHRleHQgc2luY2UgaXQgaXMgYSBkdW1teSBvbmUKbW9kZWwgPSAoUGF0aChhcmdzLm1vZGVsX2lucHV0KSAvICJtb2RlbC50eHQiKS5yZWFkX3RleHQoKQpwcmludCgiTW9kZWw6ICIsIG1vZGVsKQoKIyBEbyBzY29yaW5nIHdpdGggdGhlIGlucHV0IG1vZGVsCiMgSGVyZSBvbmx5IHByaW50IHRleHQgdG8gb3V0cHV0IGZpbGUgYXMgZGVtbwooUGF0aChhcmdzLnNjb3JlX291dHB1dCkgLyAic2NvcmUudHh0Iikud3JpdGVfdGV4dCgiU2NvcmVkIHdpdGggdGhlIGZvbGxvd2luZyBtb2RlOlxue30iLmZvcm1hdChtb2RlbCkpCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "\u002B1r7nD6TWo52vxs0R/FCxg==", - "Date": "Thu, 29 Sep 2022 23:46:54 GMT", - "ETag": "\u00220x8DAA274E46A743B\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:55 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "gJmqlK5x66k=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:14 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "b2174e1b-ad3a-4c13-a542-266dbfdd2173", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src/score.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:46:55 GMT", - "x-ms-meta-name": "7063ef60-8c19-4cb7-82a8-0649945eb636", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:46:54 GMT", - "ETag": "\u00220x8DAA274E47484E0\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:46:55 GMT", + "Date": "Wed, 12 Oct 2022 12:06:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -595,7 +533,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -605,31 +543,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "828", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:55 GMT", + "Date": "Wed, 12 Oct 2022 12:06:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b643ba13b72d67aa9f800829ac7b7567-004fcb14a3db3979-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5d820591e221c017bd958494b112d764-dfa30615cf3449cf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21a56171-c39f-4412-811b-5dcfe37f99b6", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "67193f7e-85aa-4368-8ddd-bd8bd6a2706d", + "x-ms-ratelimit-remaining-subscription-writes": "1087", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234656Z:21a56171-c39f-4412-811b-5dcfe37f99b6", - "x-request-time": "0.381" + "x-ms-routing-request-id": "JAPANEAST:20221012T120636Z:67193f7e-85aa-4368-8ddd-bd8bd6a2706d", + "x-request-time": "0.203" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -641,14 +579,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-29T23:46:56.4085282\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:15.5985909\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:56.4085282\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:06:36.0250766\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -662,7 +600,7 @@ "Connection": "keep-alive", "Content-Length": "1021", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -673,7 +611,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy scoring component", @@ -703,26 +641,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1969", + "Content-Length": "1968", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:59 GMT", + "Date": "Wed, 12 Oct 2022 12:06:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2cd9059c4d10b09db118ce1618f74c99-6643b7af00f0bb4d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0a0afdf47eb7e57735dfb647223b2757-0f953b496d55a2ca-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e3eb7a5-cc10-4dc9-b07d-0a10784a2b4d", - "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-correlation-request-id": "8fdba4d2-d1f4-453e-bd68-61b967b2b7a4", + "x-ms-ratelimit-remaining-subscription-writes": "1086", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234700Z:7e3eb7a5-cc10-4dc9-b07d-0a10784a2b4d", - "x-request-time": "3.294" + "x-ms-routing-request-id": "JAPANEAST:20221012T120637Z:8fdba4d2-d1f4-453e-bd68-61b967b2b7a4", + "x-request-time": "1.239" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ba380ca-c395-4d79-aab3-62bc577325e7", - "name": "4ba380ca-c395-4d79-aab3-62bc577325e7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bbf79f-6ab8-43d9-8a37-12dd884c8edf", + "name": "28bbf79f-6ab8-43d9-8a37-12dd884c8edf", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -732,7 +670,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4ba380ca-c395-4d79-aab3-62bc577325e7", + "version": "28bbf79f-6ab8-43d9-8a37-12dd884c8edf", "display_name": "Score Data", "is_deterministic": "True", "type": "command", @@ -752,7 +690,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7063ef60-8c19-4cb7-82a8-0649945eb636/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b2174e1b-ad3a-4c13-a542-266dbfdd2173/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -762,11 +700,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:46:59.6282666\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:29.860711\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:46:59.6282666\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:30.3406562\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -778,32 +716,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:59 GMT", + "Date": "Wed, 12 Oct 2022 12:06:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d3550531c10e36b956b00eb669140a7f-352ae4c90eb61c68-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9e4d6df84a22f8358e09826010e07b1d-ec62b37894ba95c0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb7692dc-9660-4c72-af0a-43958df74c66", - "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-correlation-request-id": "33edb1ae-436a-465e-a575-20e4c15a900f", + "x-ms-ratelimit-remaining-subscription-reads": "11905", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234700Z:fb7692dc-9660-4c72-af0a-43958df74c66", - "x-request-time": "0.121" + "x-ms-routing-request-id": "JAPANEAST:20221012T120638Z:33edb1ae-436a-465e-a575-20e4c15a900f", + "x-request-time": "0.115" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -818,17 +752,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -842,29 +776,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:46:59 GMT", + "Date": "Wed, 12 Oct 2022 12:06:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7a4205b88f72c4ee1eeebfa083ebc6ff-b6e68ede50741f0a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f768d43273352545d4d2c25708e6ef14-831f290bcb02503a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ccf9015-b87b-4ad7-afe5-18f31efd9bd4", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "00727749-d11a-4b52-85bb-5b4156b6fc87", + "x-ms-ratelimit-remaining-subscription-writes": "1140", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234700Z:7ccf9015-b87b-4ad7-afe5-18f31efd9bd4", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221012T120638Z:00727749-d11a-4b52-85bb-5b4156b6fc87", + "x-request-time": "0.130" }, "ResponseBody": { "secretsType": "AccountKey", @@ -872,98 +804,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:00 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:46:59 GMT", + "Accept-Ranges": "bytes", + "Content-Length": "795", + "Content-MD5": "DCyaJK0A7h/5O4tRl1ENtA==", + "Content-Type": "application/octet-stream", + "Date": "Wed, 12 Oct 2022 12:06:38 GMT", + "ETag": "\u00220x8DA9F72EEB59622\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "770", - "Content-MD5": "eVnVLloYfT16aDnyQ2oJnQ==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:47:00 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aApmcm9tIGRhdGV0aW1lIGltcG9ydCBkYXRldGltZQoKcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoInNjb3JlIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1zY29yaW5nX3Jlc3VsdCIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIG9mIHNjb3JpbmcgcmVzdWx0IikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1ldmFsX291dHB1dCIsIHR5cGU9c3RyLCBoZWxwPSJQYXRoIG9mIG91dHB1dCBldmFsdWF0aW9uIHJlc3VsdCIpCgphcmdzID0gcGFyc2VyLnBhcnNlX2FyZ3MoKQoKcHJpbnQoImhlbGxvIGV2YWx1YXRpb24gd29ybGQuLi4iKQoKbGluZXMgPSBbCiAgICBmIlNjb3JpbmcgcmVzdWx0IHBhdGg6IHthcmdzLnNjb3JpbmdfcmVzdWx0fSIsCiAgICBmIkV2YWx1YXRpb24gb3V0cHV0IHBhdGg6IHthcmdzLmV2YWxfb3V0cHV0fSIsCl0KCmZvciBsaW5lIGluIGxpbmVzOgogICAgcHJpbnQobGluZSkKCiMgRXZhbHVhdGUgdGhlIGluY29taW5nIHNjb3JpbmcgcmVzdWx0IGFuZCBvdXRwdXQgZXZhbHVhdGlvbiByZXN1bHQuCiMgSGVyZSBvbmx5IG91dHB1dCBhIGR1bW15IGZpbGUgZm9yIGRlbW8uCmN1cnRpbWUgPSBkYXRldGltZS5ub3coKS5zdHJmdGltZSgiJWItJWQtJVkgJUg6JU06JVMiKQpldmFsX21zZyA9IGYiRXZhbCBkb25lIGF0IHtjdXJ0aW1lfVxuIgooUGF0aChhcmdzLmV2YWxfb3V0cHV0KSAvICJldmFsX3Jlc3VsdC50eHQiKS53cml0ZV90ZXh0KGV2YWxfbXNnKQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "eVnVLloYfT16aDnyQ2oJnQ==", - "Date": "Thu, 29 Sep 2022 23:46:59 GMT", - "ETag": "\u00220x8DAA274E76EE06E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:47:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "Q5JWfHBK/qU=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:20 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "cd16855c-6d4c-4857-9716-b1edd07c83a5", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src/eval.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:00 GMT", - "x-ms-meta-name": "719762c7-52a7-48b3-a513-732eaadaa846", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:47:00 GMT", - "ETag": "\u00220x8DAA274E77806E3\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:47:00 GMT", + "Date": "Wed, 12 Oct 2022 12:06:39 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -971,7 +878,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -981,31 +888,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "827", + "Content-Length": "826", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:01 GMT", + "Date": "Wed, 12 Oct 2022 12:06:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-13e1b9da67bd6fbe0a53166a22fcca35-a461c06a5abbec75-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9e67af180a32403c247c35e42c28c9fd-a0bb99fe6afae0dd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f55f070-a2c0-4374-bf0c-e191b8c694e3", - "x-ms-ratelimit-remaining-subscription-writes": "1149", + "x-ms-correlation-request-id": "631e8f20-8172-40e4-a824-409f65e30a4e", + "x-ms-ratelimit-remaining-subscription-writes": "1085", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234701Z:2f55f070-a2c0-4374-bf0c-e191b8c694e3", - "x-request-time": "0.415" + "x-ms-routing-request-id": "JAPANEAST:20221012T120640Z:631e8f20-8172-40e4-a824-409f65e30a4e", + "x-request-time": "0.201" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1017,14 +924,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-29T23:47:01.6607459\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:21.4446896\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:01.6607459\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:06:39.832449\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1038,7 +945,7 @@ "Connection": "keep-alive", "Content-Length": "957", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1049,7 +956,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy evaluate component", @@ -1078,24 +985,24 @@ "Cache-Control": "no-cache", "Content-Length": "1845", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:05 GMT", + "Date": "Wed, 12 Oct 2022 12:06:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f30236e5f42acd026266ef3e85e0e35f-957d1bc52e6f8fdb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d5e3ff35e83cc363292f5f8055e4d3a8-4512a21cc2c521b4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "496ed26f-4c5c-4684-9625-d205285d6ae6", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "f954ed36-bf68-4e76-9a06-9b50acae6423", + "x-ms-ratelimit-remaining-subscription-writes": "1084", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234705Z:496ed26f-4c5c-4684-9625-d205285d6ae6", - "x-request-time": "3.735" + "x-ms-routing-request-id": "JAPANEAST:20221012T120641Z:f954ed36-bf68-4e76-9a06-9b50acae6423", + "x-request-time": "1.222" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395", - "name": "5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a58e33b7-5aa1-4836-8710-7e7767e65701", + "name": "a58e33b7-5aa1-4836-8710-7e7767e65701", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1105,7 +1012,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395", + "version": "a58e33b7-5aa1-4836-8710-7e7767e65701", "display_name": "Eval Model", "is_deterministic": "True", "type": "command", @@ -1121,7 +1028,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/719762c7-52a7-48b3-a513-732eaadaa846/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/cd16855c-6d4c-4857-9716-b1edd07c83a5/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1131,11 +1038,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:05.3166848\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:35.2142682\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:05.3166848\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:35.7149188\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1149,7 +1056,7 @@ "Connection": "keep-alive", "Content-Length": "3374", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1230,7 +1137,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4813700e-ab7c-4ed7-81db-7a592c8e6732" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1e09cff7-9573-45ac-aed4-cf29c8f9badd" }, "score_with_sample_data": { "resources": null, @@ -1260,7 +1167,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ba380ca-c395-4d79-aab3-62bc577325e7" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bbf79f-6ab8-43d9-8a37-12dd884c8edf" }, "eval_with_sample_data": { "resources": null, @@ -1286,7 +1193,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a58e33b7-5aa1-4836-8710-7e7767e65701" } }, "_source": "DSL", @@ -1297,26 +1204,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1933", + "Content-Length": "1934", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:07 GMT", + "Date": "Wed, 12 Oct 2022 12:06:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-462ecfa770dfc8e3861adda52a60eebd-4447d83f5f386e64-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ad0c0f61aaf48bf2f149d319a692b282-b8a3a64972c05fbe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5da3e285-beda-4e81-b728-6788d3344526", - "x-ms-ratelimit-remaining-subscription-writes": "1147", + "x-ms-correlation-request-id": "524ef96e-0448-41cd-86ce-3353d27eb26f", + "x-ms-ratelimit-remaining-subscription-writes": "1083", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234708Z:5da3e285-beda-4e81-b728-6788d3344526", - "x-request-time": "2.124" + "x-ms-routing-request-id": "JAPANEAST:20221012T120644Z:524ef96e-0448-41cd-86ce-3353d27eb26f", + "x-request-time": "2.297" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/36c409ff-9082-4e02-9f52-2f63e138a1c5", - "name": "36c409ff-9082-4e02-9f52-2f63e138a1c5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7b3a9646-06b3-4b91-b1f9-a5eb3bf19a92", + "name": "7b3a9646-06b3-4b91-b1f9-a5eb3bf19a92", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1326,9 +1233,9 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "36c409ff-9082-4e02-9f52-2f63e138a1c5", + "version": "7b3a9646-06b3-4b91-b1f9-a5eb3bf19a92", "display_name": "train_pipeline_component", - "is_deterministic": "True", + "is_deterministic": "False", "type": "pipeline", "description": "E2E dummy train-score-eval pipeline with components defined via yaml.", "inputs": { @@ -1367,11 +1274,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:07.8607753\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:06:44.1790558\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:07.8607753\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:06:44.1790558\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1385,7 +1292,7 @@ "Connection": "keep-alive", "Content-Length": "3374", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1466,7 +1373,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4813700e-ab7c-4ed7-81db-7a592c8e6732" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1e09cff7-9573-45ac-aed4-cf29c8f9badd" }, "score_with_sample_data": { "resources": null, @@ -1496,7 +1403,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ba380ca-c395-4d79-aab3-62bc577325e7" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bbf79f-6ab8-43d9-8a37-12dd884c8edf" }, "eval_with_sample_data": { "resources": null, @@ -1522,7 +1429,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5f6e1ae2-fa6a-4e13-afa4-2db6a85c0395" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a58e33b7-5aa1-4836-8710-7e7767e65701" } }, "_source": "DSL", @@ -1533,26 +1440,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1933", + "Content-Length": "1934", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:10 GMT", + "Date": "Wed, 12 Oct 2022 12:06:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b461a5e354b8e2a8beb5cb7fea3b9114-055c1a24d92514e1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ec8804b55125391227622d9047462f60-fad74cbe374b31a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6f4b719-b2e4-496c-8702-15dbbf479d59", - "x-ms-ratelimit-remaining-subscription-writes": "1146", + "x-ms-correlation-request-id": "8af3eff6-b347-4d32-bcf0-6671712686cf", + "x-ms-ratelimit-remaining-subscription-writes": "1082", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234711Z:d6f4b719-b2e4-496c-8702-15dbbf479d59", - "x-request-time": "2.339" + "x-ms-routing-request-id": "JAPANEAST:20221012T120647Z:8af3eff6-b347-4d32-bcf0-6671712686cf", + "x-request-time": "2.463" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e6056a4-a079-4475-ad18-1e19693d766d", - "name": "5e6056a4-a079-4475-ad18-1e19693d766d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8619a63-29e3-4e28-82fb-228ce7f98afc", + "name": "f8619a63-29e3-4e28-82fb-228ce7f98afc", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1562,9 +1469,9 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5e6056a4-a079-4475-ad18-1e19693d766d", + "version": "f8619a63-29e3-4e28-82fb-228ce7f98afc", "display_name": "train_pipeline_component", - "is_deterministic": "True", + "is_deterministic": "False", "type": "pipeline", "description": "E2E dummy train-score-eval pipeline with components defined via yaml.", "inputs": { @@ -1603,11 +1510,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:10.5985261\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:06:47.2196701\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:10.5985261\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:06:47.2196701\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1619,32 +1526,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:10 GMT", + "Date": "Wed, 12 Oct 2022 12:06:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c7988de01f45f579e56fd96ffd485b46-a86216af5a8aafd8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d6e9629eb77b1755e0212964ac987aa3-0b2605ef6447f3c2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20244c67-99bb-42e5-87ae-d1d28674e8d5", - "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-correlation-request-id": "26ac667e-d03e-448f-b87e-b34fd3165dc5", + "x-ms-ratelimit-remaining-subscription-reads": "11904", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234711Z:20244c67-99bb-42e5-87ae-d1d28674e8d5", - "x-request-time": "0.095" + "x-ms-routing-request-id": "JAPANEAST:20221012T120648Z:26ac667e-d03e-448f-b87e-b34fd3165dc5", + "x-request-time": "0.147" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1659,17 +1562,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1683,29 +1586,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:10 GMT", + "Date": "Wed, 12 Oct 2022 12:06:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2b89138cbe3ae07f044b7bc44e81b69f-5a26158051a8aa6f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-db80954fd06c19a61ec9c67747b277ef-f22c1a7154539e27-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f55713c6-86ec-4cfd-81f8-0a60aa68edc3", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "3989da38-8923-4658-9e29-921601da2307", + "x-ms-ratelimit-remaining-subscription-writes": "1139", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234711Z:f55713c6-86ec-4cfd-81f8-0a60aa68edc3", - "x-request-time": "0.099" + "x-ms-routing-request-id": "JAPANEAST:20221012T120649Z:3989da38-8923-4658-9e29-921601da2307", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1713,98 +1614,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:11 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:10 GMT", + "Accept-Ranges": "bytes", + "Content-Length": "1355", + "Content-MD5": "KDKfFAmtl5iN7Kbvl/m5/g==", + "Content-Type": "application/octet-stream", + "Date": "Wed, 12 Oct 2022 12:06:49 GMT", + "ETag": "\u00220x8DA9F730133AB37\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1320", - "Content-MD5": "lhdlP3AmfdrQn\u002BPzTAYfwA==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:47:11 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlCmZyb20gcGF0aGxpYiBpbXBvcnQgUGF0aAoKcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoImNvbXBhcmUyIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1tb2RlbDEiLCB0eXBlPXN0ciwgaGVscD0iVGhlIGZpcnN0IG1vZGVsIHRvIGNvbXBhcmUgd2l0aCIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tZXZhbF9yZXN1bHQxIiwgdHlwZT1zdHIsIGhlbHA9IlRoZSBldmFsdWF0aW9uIHJlc3VsdCBvZiBmaXJzdCBtb2RlbCIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbW9kZWwyIiwgdHlwZT1zdHIsIGhlbHA9IlRoZSBzZWNvbmQgbW9kZWwgdG8gY29tcGFyZSIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tZXZhbF9yZXN1bHQyIiwgdHlwZT1zdHIsIGhlbHA9IlRoZSBldmFsdWF0aW9uIHJlc3VsdCBvZiBzZWNvbmQgbW9kZWwiKQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWJlc3RfbW9kZWwiLCB0eXBlPXN0ciwgaGVscD0iVGhlIGJldHRlciBtb2RlbCBhbW9uZyB0aGUgdHdvIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1iZXN0X3Jlc3VsdCIsIHR5cGU9c3RyLCBoZWxwPSJUaGUgYmV0dGVyIG1vZGVsIGV2YWx1dGlvbiByZXN1bHQgYW1vbmcgdGhlIHR3byIpCgoKYXJncyA9IHBhcnNlci5wYXJzZV9hcmdzKCkKCmxpbmVzID0gWwogICAgZiJNb2RlbCAjMToge2FyZ3MubW9kZWwxfSIsCiAgICBmIkV2YWx1YXRpb24gIzE6IHthcmdzLmV2YWxfcmVzdWx0MX0iLAogICAgZiJNb2RlbCAjMjoge2FyZ3MubW9kZWwyfSIsCiAgICBmIkV2YWx1YXRpb24gIzI6IHthcmdzLmV2YWxfcmVzdWx0Mn0iLAogICAgZiJCZXN0IG1vZGVsIHBhdGg6IHthcmdzLmJlc3RfbW9kZWx9IiwKXQoKUGF0aChhcmdzLmJlc3RfbW9kZWwpLm1rZGlyKHBhcmVudHM9VHJ1ZSwgZXhpc3Rfb2s9VHJ1ZSkKbW9kZWxfb3V0cHV0ID0gUGF0aChhcmdzLmJlc3RfbW9kZWwpIC8gUGF0aCgibW9kZWwiKS5uYW1lCndpdGggb3Blbihtb2RlbF9vdXRwdXQsICJ3IikgYXMgZmlsZToKICAgIGZvciBsaW5lIGluIGxpbmVzOgogICAgICAgIHByaW50KGxpbmUpCiAgICAgICAgZmlsZS53cml0ZShsaW5lICsgIlxuIikKClBhdGgoYXJncy5iZXN0X3Jlc3VsdCkubWtkaXIocGFyZW50cz1UcnVlLCBleGlzdF9vaz1UcnVlKQpyZXN1bHRfb3V0cHV0ID0gUGF0aChhcmdzLmJlc3RfcmVzdWx0KSAvIFBhdGgoInJlc3VsdCIpLm5hbWUKd2l0aCBvcGVuKHJlc3VsdF9vdXRwdXQsICJ3IikgYXMgZmlsZToKICAgIGZvciBsaW5lIGluIGxpbmVzOgogICAgICAgIHByaW50KGxpbmUpCiAgICAgICAgZmlsZS53cml0ZShsaW5lICsgIlxuIikK", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "lhdlP3AmfdrQn\u002BPzTAYfwA==", - "Date": "Thu, 29 Sep 2022 23:47:10 GMT", - "ETag": "\u00220x8DAA274EE03B80E\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:47:11 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "tCYSmN\u002BIZxg=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:51 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "48f94719-2664-43d6-80b4-1c5f7ada60a5", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:11 GMT", - "x-ms-meta-name": "19b1373b-4758-4cba-a7ca-f0631a2c8fdb", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:47:11 GMT", - "ETag": "\u00220x8DAA274EE0D7AA5\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:47:12 GMT", + "Date": "Wed, 12 Oct 2022 12:06:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1812,7 +1688,7 @@ "Connection": "keep-alive", "Content-Length": "301", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1822,31 +1698,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "831", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:11 GMT", + "Date": "Wed, 12 Oct 2022 12:06:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-52a71f90ac0aff888706f8c66ea5c49f-69b0985943b609e3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4848bd06ea354cf4b224ed75710200f7-db6b6557a603f734-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b46284d7-eb1f-4dd0-a2b6-88de8134f299", - "x-ms-ratelimit-remaining-subscription-writes": "1145", + "x-ms-correlation-request-id": "0815ba62-565d-4ba9-8aec-2453dbe3a3b0", + "x-ms-ratelimit-remaining-subscription-writes": "1081", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234712Z:b46284d7-eb1f-4dd0-a2b6-88de8134f299", - "x-request-time": "0.416" + "x-ms-routing-request-id": "JAPANEAST:20221012T120650Z:0815ba62-565d-4ba9-8aec-2453dbe3a3b0", + "x-request-time": "0.642" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1858,14 +1734,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src" }, "systemData": { - "createdAt": "2022-09-29T23:47:12.5103381\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:55:52.6373527\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:12.5103381\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:06:50.3107544\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -1879,7 +1755,7 @@ "Connection": "keep-alive", "Content-Length": "1436", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1890,7 +1766,7 @@ "isArchived": false, "componentSpec": { "command": "python compare2.py $[[--model1 ${{inputs.model1}}]] $[[--eval_result1 ${{inputs.eval_result1}}]] $[[--model2 ${{inputs.model2}}]] $[[--eval_result2 ${{inputs.eval_result2}}]] --best_model ${{outputs.best_model}} --best_result ${{outputs.best_result}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "description": "A dummy comparison module takes two models as input and outputs the better one", @@ -1935,24 +1811,24 @@ "Cache-Control": "no-cache", "Content-Length": "2401", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:15 GMT", + "Date": "Wed, 12 Oct 2022 12:06:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-01017eed0637e209970316adfdffcb2f-2f51a5f33c8d7a07-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6f4d2c3b15aca31667cae75f5d8e28b6-aede8e52fa8f1672-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1951b949-317f-4418-911a-6c7231f263e1", - "x-ms-ratelimit-remaining-subscription-writes": "1144", + "x-ms-correlation-request-id": "cae831e6-7f54-4aab-9419-e8936fd4fc0e", + "x-ms-ratelimit-remaining-subscription-writes": "1080", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234716Z:1951b949-317f-4418-911a-6c7231f263e1", - "x-request-time": "3.530" + "x-ms-routing-request-id": "JAPANEAST:20221012T120652Z:cae831e6-7f54-4aab-9419-e8936fd4fc0e", + "x-request-time": "1.789" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/09131183-3118-4271-a7e5-2e9d98e72875", - "name": "09131183-3118-4271-a7e5-2e9d98e72875", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c18c3d5d-9751-4acf-831c-41efdf544037", + "name": "c18c3d5d-9751-4acf-831c-41efdf544037", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1962,7 +1838,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "09131183-3118-4271-a7e5-2e9d98e72875", + "version": "c18c3d5d-9751-4acf-831c-41efdf544037", "display_name": "Compare 2 Models", "is_deterministic": "True", "type": "command", @@ -1993,7 +1869,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/19b1373b-4758-4cba-a7ca-f0631a2c8fdb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48f94719-2664-43d6-80b4-1c5f7ada60a5/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -2003,11 +1879,11 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:47:15.9588497\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:43:46.7255951\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:47:15.9588497\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:43:47.2305493\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -2019,32 +1895,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:15 GMT", + "Date": "Wed, 12 Oct 2022 12:06:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-1ad41a5f79d5da120c793df659bca39d-fc920a081ecd4703-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-616954a9a0672d1c255a4e50df4ba76a-f747f9c931571853-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8bacd90-f45d-4add-b1d3-89effea27735", - "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-correlation-request-id": "677b0e21-8895-4000-a868-c3edf534b903", + "x-ms-ratelimit-remaining-subscription-reads": "11903", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234716Z:b8bacd90-f45d-4add-b1d3-89effea27735", - "x-request-time": "0.082" + "x-ms-routing-request-id": "JAPANEAST:20221012T120653Z:677b0e21-8895-4000-a868-c3edf534b903", + "x-request-time": "0.109" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2059,17 +1931,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2083,29 +1955,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:16 GMT", + "Date": "Wed, 12 Oct 2022 12:06:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4e9d78e64ed3f5c9b4a179624f2af066-f2c8d063ee25fb86-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2e74e25a09c02c25f0e1e1abd77695fa-130175a9c7c5cb50-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cf8380b-c9f5-4ed2-afb1-6f77c1695024", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "c36314dc-cd2a-4893-baa9-24511ca3a827", + "x-ms-ratelimit-remaining-subscription-writes": "1138", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234717Z:1cf8380b-c9f5-4ed2-afb1-6f77c1695024", - "x-request-time": "0.108" + "x-ms-routing-request-id": "JAPANEAST:20221012T120653Z:c36314dc-cd2a-4893-baa9-24511ca3a827", + "x-request-time": "0.107" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2113,15 +1983,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:17 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -2130,9 +2000,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:47:16 GMT", - "ETag": "\u00220x8DAA2741556AC06\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:08 GMT", + "Date": "Wed, 12 Oct 2022 12:06:53 GMT", + "ETag": "\u00220x8DA9F7304EC3057\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:57 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2141,32 +2011,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:41:08 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:57 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "72cab38d-4569-46a4-a4b0-0ba143159543", + "x-ms-meta-name": "24496764-8d2c-462a-b2b4-0449135f51d7", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e073ba76-2f78-4900-9ea8-be1fb5baab29", + "x-ms-meta-version": "087a6a33-a6c2-4301-88a7-4d13f371fac1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:17 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:16 GMT", + "Date": "Wed, 12 Oct 2022 12:06:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2174,7 +2044,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -2185,32 +2055,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:16 GMT", + "Date": "Wed, 12 Oct 2022 12:06:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f463c077fd41d5a3f32899f8664af352-114a910abcc17ff7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-734e9e3795fefa1d581e179944e9a945-83d9e9e650bab143-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3666282-33d2-41ea-86e6-320d60fe913e", - "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-correlation-request-id": "6b6d9ed3-bbd8-43eb-a856-045bf225a389", + "x-ms-ratelimit-remaining-subscription-reads": "11902", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234717Z:d3666282-33d2-41ea-86e6-320d60fe913e", - "x-request-time": "0.082" + "x-ms-routing-request-id": "JAPANEAST:20221012T120654Z:6b6d9ed3-bbd8-43eb-a856-045bf225a389", + "x-request-time": "0.110" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2225,17 +2091,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2249,29 +2115,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:16 GMT", + "Date": "Wed, 12 Oct 2022 12:06:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-55993f8f27a09db4d33f87d14792590a-902eef52a38da679-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b1c8501c629a386bdc790fc323dadf09-0d28f5c9b3375828-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61664179-0fe6-420b-a988-4b79ca8dfcd9", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "b151d647-51b4-4639-ae88-4aa4579d9b25", + "x-ms-ratelimit-remaining-subscription-writes": "1137", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234717Z:61664179-0fe6-420b-a988-4b79ca8dfcd9", - "x-request-time": "0.134" + "x-ms-routing-request-id": "JAPANEAST:20221012T120655Z:b151d647-51b4-4639-ae88-4aa4579d9b25", + "x-request-time": "0.102" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2279,15 +2143,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:17 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -2296,9 +2160,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:47:16 GMT", - "ETag": "\u00220x8DAA2741556AC06\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:41:08 GMT", + "Date": "Wed, 12 Oct 2022 12:06:55 GMT", + "ETag": "\u00220x8DA9F7304EC3057\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:57 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2307,32 +2171,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 23:41:08 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:57 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "72cab38d-4569-46a4-a4b0-0ba143159543", + "x-ms-meta-name": "24496764-8d2c-462a-b2b4-0449135f51d7", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e073ba76-2f78-4900-9ea8-be1fb5baab29", + "x-ms-meta-version": "087a6a33-a6c2-4301-88a7-4d13f371fac1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:47:17 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:06:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:47:17 GMT", + "Date": "Wed, 12 Oct 2022 12:06:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2340,12 +2204,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2353,7 +2217,7 @@ "Connection": "keep-alive", "Content-Length": "3569", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2405,7 +2269,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/36c409ff-9082-4e02-9f52-2f63e138a1c5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7b3a9646-06b3-4b91-b1f9-a5eb3bf19a92" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2430,7 +2294,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e6056a4-a079-4475-ad18-1e19693d766d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8619a63-29e3-4e28-82fb-228ce7f98afc" }, "compare2_models": { "resources": null, @@ -2472,7 +2336,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/09131183-3118-4271-a7e5-2e9d98e72875" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c18c3d5d-9751-4acf-831c-41efdf544037" } }, "outputs": { @@ -2492,22 +2356,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6869", + "Content-Length": "6915", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:47:23 GMT", + "Date": "Wed, 12 Oct 2022 12:07:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-27855ed99af5b2e12b0fde66516d01cb-734790bd39f94fdb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4fc2c2da22837ad18037533ae0cbe2e6-0c0c4a9939587647-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "530a35bd-4874-4d05-aa13-d1ed4ec67e9e", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "8d34a562-a8ad-40b5-8b4f-a658b45854b8", + "x-ms-ratelimit-remaining-subscription-writes": "1079", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234724Z:530a35bd-4874-4d05-aa13-d1ed4ec67e9e", - "x-request-time": "5.121" + "x-ms-routing-request-id": "JAPANEAST:20221012T120703Z:8d34a562-a8ad-40b5-8b4f-a658b45854b8", + "x-request-time": "3.693" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2538,7 +2402,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -2546,7 +2411,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -2582,7 +2448,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/36c409ff-9082-4e02-9f52-2f63e138a1c5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7b3a9646-06b3-4b91-b1f9-a5eb3bf19a92" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2607,7 +2473,7 @@ "outputs": {}, "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e6056a4-a079-4475-ad18-1e19693d766d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f8619a63-29e3-4e28-82fb-228ce7f98afc" }, "compare2_models": { "resources": null, @@ -2649,7 +2515,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/09131183-3118-4271-a7e5-2e9d98e72875" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c18c3d5d-9751-4acf-831c-41efdf544037" } }, "inputs": { @@ -2693,8 +2559,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:47:23.9282523\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:07:02.7779815\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json index 8cf6dcdbee311..e7a0af0d6d397 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:38 GMT", + "Date": "Wed, 12 Oct 2022 12:02:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-74b2d0edff758a183c84959e3fc4b17e-ac593a17e5189ccb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9a0c539c806aa46a63ba309d8e968f28-827eba8ab3815418-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c1d1467-c79d-443c-a43c-b15dd0ba2a5f", - "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-correlation-request-id": "f93b74bd-3d3f-4c1f-82fc-a7e4a8554df4", + "x-ms-ratelimit-remaining-subscription-reads": "11946", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234338Z:2c1d1467-c79d-443c-a43c-b15dd0ba2a5f", - "x-request-time": "0.222" + "x-ms-routing-request-id": "JAPANEAST:20221012T120221Z:f93b74bd-3d3f-4c1f-82fc-a7e4a8554df4", + "x-request-time": "0.250" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:38 GMT", + "Date": "Wed, 12 Oct 2022 12:02:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b9b451071cfdd62e0bea14b0966b0525-6cbaf7c1b491e2bd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-54ad4fea664ee90bbf9d56862fd52ee2-9909f744403f1e87-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de8ee55a-c32c-4cd5-836b-b239587c4332", - "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-correlation-request-id": "b7d373f5-b82a-4c81-9738-e39072ce54a0", + "x-ms-ratelimit-remaining-subscription-reads": "11945", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234339Z:de8ee55a-c32c-4cd5-836b-b239587c4332", - "x-request-time": "0.081" + "x-ms-routing-request-id": "JAPANEAST:20221012T120224Z:b7d373f5-b82a-4c81-9738-e39072ce54a0", + "x-request-time": "0.114" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:39 GMT", + "Date": "Wed, 12 Oct 2022 12:02:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-727cf6171ecc09344efa1c74e2306799-ac52bf98c5316754-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6dc3b6686d701bc029c307fbc259293d-da8c3daaf16dc8b8-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": "543304c4-8c76-497b-8f08-762f3438bc3b", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "386565bb-4c71-466b-a3cf-72e60d7b60a5", + "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234339Z:543304c4-8c76-497b-8f08-762f3438bc3b", - "x-request-time": "0.089" + "x-ms-routing-request-id": "JAPANEAST:20221012T120224Z:386565bb-4c71-466b-a3cf-72e60d7b60a5", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:24 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:43:38 GMT", - "ETag": "\u00220x8DAA269B39E05D8\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:26:49 GMT", + "Date": "Wed, 12 Oct 2022 12:02:24 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:26:49 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5559a10b-f428-4259-a127-d246099b26e8", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:39 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:02:25 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:43:38 GMT", + "Date": "Wed, 12 Oct 2022 12:02:25 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "813", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:39 GMT", + "Date": "Wed, 12 Oct 2022 12:02:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-800327280d87c22f1fd441769974bdf5-06451624307c978b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-33dc0059de13bda389f7576fa75efce5-bcad06eb254623a2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1ba8da7-9526-4537-bcfd-a0f105ffe28a", - "x-ms-ratelimit-remaining-subscription-writes": "1132", + "x-ms-correlation-request-id": "c07eacad-c43d-4822-98a3-50dcab2fdf36", + "x-ms-ratelimit-remaining-subscription-writes": "1139", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234340Z:c1ba8da7-9526-4537-bcfd-a0f105ffe28a", - "x-request-time": "0.183" + "x-ms-routing-request-id": "JAPANEAST:20221012T120226Z:c07eacad-c43d-4822-98a3-50dcab2fdf36", + "x-request-time": "0.326" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-29T22:26:51.4133291\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:40.1875112\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:02:26.0664525\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "1126", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -353,7 +326,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "echo \u0022 RANK: $RANK \\n LOCAL_RANK: $LOCAL_RANK \\n NODE_RANK: $NODE_RANK \\n MASTER_ADDR: $MASTER_ADDR \\n MASTER_PORT: $MASTER_PORT \\n\u0022", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-pytorch-1.9-ubuntu18.04-py37-cuda11-gpu:7", "resources": { "instance_count": 2 @@ -380,24 +353,24 @@ "Cache-Control": "no-cache", "Content-Length": "1846", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:43 GMT", + "Date": "Wed, 12 Oct 2022 12:02:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b5c9fb2c5550cfadde3234bf7fb90eec-feaede012bb98e2a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3652eef4a31c2e8cdaa5578a705d0601-fea4e39f9be44a68-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a6fff91-e4cb-42c5-9d3d-42dae791e5bf", - "x-ms-ratelimit-remaining-subscription-writes": "1131", + "x-ms-correlation-request-id": "bbb9b9c9-c0aa-40ec-a162-c8aa330ee2eb", + "x-ms-ratelimit-remaining-subscription-writes": "1138", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234343Z:2a6fff91-e4cb-42c5-9d3d-42dae791e5bf", - "x-request-time": "3.153" + "x-ms-routing-request-id": "JAPANEAST:20221012T120228Z:bbb9b9c9-c0aa-40ec-a162-c8aa330ee2eb", + "x-request-time": "1.309" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0922f129-dd36-48aa-85ed-08233cd1e598", - "name": "0922f129-dd36-48aa-85ed-08233cd1e598", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a40d00b0-ae85-4ed0-8e64-669d8eaed7e0", + "name": "a40d00b0-ae85-4ed0-8e64-669d8eaed7e0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -407,12 +380,12 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "0922f129-dd36-48aa-85ed-08233cd1e598", + "version": "a40d00b0-ae85-4ed0-8e64-669d8eaed7e0", "display_name": "PyTorch-hello-world", "is_deterministic": "True", "type": "command", "description": "Prints the environment variables useful for scripts running in a PyTorch training environment.", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-pytorch-1.9-ubuntu18.04-py37-cuda11-gpu/versions/7", "resources": { "instance_count": "2" @@ -426,17 +399,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:43:43.1151761\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:39:24.6375306\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:43.1151761\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:39:25.1014821\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -444,7 +417,7 @@ "Connection": "keep-alive", "Content-Length": "1087", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -477,7 +450,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0922f129-dd36-48aa-85ed-08233cd1e598" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a40d00b0-ae85-4ed0-8e64-669d8eaed7e0" } }, "outputs": {}, @@ -489,22 +462,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2991", + "Content-Length": "3037", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:48 GMT", + "Date": "Wed, 12 Oct 2022 12:02:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-613e0cdda4a15588882e7c0e3c7c5fd6-01d47ef8d6ac5da1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dc3bca9dd271f7555c2a352f1a9528d5-f54d0056cda5965c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff4ca334-09ed-429d-b5c0-b48072cabb8e", - "x-ms-ratelimit-remaining-subscription-writes": "1130", + "x-ms-correlation-request-id": "b5def696-a6ee-4310-ad6b-221b178d6b7b", + "x-ms-ratelimit-remaining-subscription-writes": "1137", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234349Z:ff4ca334-09ed-429d-b5c0-b48072cabb8e", - "x-request-time": "3.418" + "x-ms-routing-request-id": "JAPANEAST:20221012T120235Z:b5def696-a6ee-4310-ad6b-221b178d6b7b", + "x-request-time": "2.839" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -534,7 +507,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -542,7 +516,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -574,7 +549,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0922f129-dd36-48aa-85ed-08233cd1e598" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a40d00b0-ae85-4ed0-8e64-669d8eaed7e0" } }, "inputs": {}, @@ -582,8 +557,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:43:48.6301131\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:02:34.7414061\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json index d4ecd8d0da8d9..ed0d7b2fe0c8b 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:11 GMT", + "Date": "Wed, 12 Oct 2022 12:01:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9d299fd872df325c370b74ec2d6445c9-520e6817eaae8402-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-43dd43d3efcbc919baec25745d4174a8-1082a733f29a3a8c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ceecf649-363c-450d-a9c1-666609de9083", - "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-correlation-request-id": "d662ba3b-83a5-40cc-998e-27e030df8cfb", + "x-ms-ratelimit-remaining-subscription-reads": "11950", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234311Z:ceecf649-363c-450d-a9c1-666609de9083", - "x-request-time": "0.225" + "x-ms-routing-request-id": "JAPANEAST:20221012T120146Z:d662ba3b-83a5-40cc-998e-27e030df8cfb", + "x-request-time": "0.233" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:12 GMT", + "Date": "Wed, 12 Oct 2022 12:01:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8517e564bf81e0297c65c56f63b0b8b6-0705eed02e039372-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0942a8c5642d17f85c5cf88a3c94b00f-c2284eb2dbd1a97c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c35c8a6c-5ab2-468f-80a1-fc37e74e49cc", - "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-correlation-request-id": "4821aeea-3737-404d-b8e7-d58e116897fc", + "x-ms-ratelimit-remaining-subscription-reads": "11949", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234312Z:c35c8a6c-5ab2-468f-80a1-fc37e74e49cc", - "x-request-time": "0.112" + "x-ms-routing-request-id": "JAPANEAST:20221012T120148Z:4821aeea-3737-404d-b8e7-d58e116897fc", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:12 GMT", + "Date": "Wed, 12 Oct 2022 12:01:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9e38d414c266078b7383dabe21996711-85ac8605e2acea9e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-65a93781a97cbfc89109b5a924a172e3-ca892e3a1f3a1947-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a45dfc66-40d8-4f8c-93ab-da50627876be", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "73d52850-3473-447b-ab33-d804d12cb0ea", + "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234313Z:a45dfc66-40d8-4f8c-93ab-da50627876be", - "x-request-time": "0.119" + "x-ms-routing-request-id": "JAPANEAST:20221012T120149Z:73d52850-3473-447b-ab33-d804d12cb0ea", + "x-request-time": "0.158" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +173,15 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:13 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:01:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +190,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Thu, 29 Sep 2022 23:43:12 GMT", - "ETag": "\u00220x8DAA269B39E05D8\u0022", - "Last-Modified": "Thu, 29 Sep 2022 22:26:49 GMT", + "Date": "Wed, 12 Oct 2022 12:01:48 GMT", + "ETag": "\u00220x8DA9D48E17467D7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:49:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +201,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 29 Sep 2022 22:26:49 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "5559a10b-f428-4259-a127-d246099b26e8", + "x-ms-meta-name": "9c9cfba9-82bd-45db-ad06-07009d1d9672", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:43:13 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:01:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:43:12 GMT", + "Date": "Wed, 12 Oct 2022 12:01:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +234,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -280,35 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "813", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:13 GMT", + "Date": "Wed, 12 Oct 2022 12:01:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-87ca9748d2fb4bfd4ca8701330db144c-941796970126ae87-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9062286ed202e74c8c2ad4d29c34e7d5-ecf51a110051fdc1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "432243c1-901d-48a3-9eb8-66e01b8bf98c", - "x-ms-ratelimit-remaining-subscription-writes": "1138", + "x-ms-correlation-request-id": "fa9bf9a8-efd8-405e-99f3-fc1d1a7655ef", + "x-ms-ratelimit-remaining-subscription-writes": "1145", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234314Z:432243c1-901d-48a3-9eb8-66e01b8bf98c", - "x-request-time": "0.375" + "x-ms-routing-request-id": "JAPANEAST:20221012T120150Z:fa9bf9a8-efd8-405e-99f3-fc1d1a7655ef", + "x-request-time": "0.188" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-29T22:26:51.4133291\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-23T09:49:20.984936\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:13.9599676\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:01:49.9135354\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -341,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "965", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -353,7 +326,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "echo $TF_CONFIG", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml:AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu:15", "resources": { "instance_count": 2 @@ -379,26 +352,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1722", + "Content-Length": "1721", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:17 GMT", + "Date": "Wed, 12 Oct 2022 12:01:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-08837fc104358061b6727d6b7744150e-0855d306a04dd69c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-19faed737fe8336f91a0ff23667a45cb-55f139438dd25ca1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f81d46bc-f472-4c3d-9d10-87a30a9996ee", - "x-ms-ratelimit-remaining-subscription-writes": "1137", + "x-ms-correlation-request-id": "f66e241a-bdb0-46a0-9046-43da5030c1db", + "x-ms-ratelimit-remaining-subscription-writes": "1144", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234317Z:f81d46bc-f472-4c3d-9d10-87a30a9996ee", - "x-request-time": "3.440" + "x-ms-routing-request-id": "JAPANEAST:20221012T120152Z:f66e241a-bdb0-46a0-9046-43da5030c1db", + "x-request-time": "1.555" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/75a08d3c-51c4-44dd-8872-b960348ffe6c", - "name": "75a08d3c-51c4-44dd-8872-b960348ffe6c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/9957fa52-4373-4ec8-b241-1c33a9a10b1d", + "name": "9957fa52-4373-4ec8-b241-1c33a9a10b1d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -408,12 +381,12 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "75a08d3c-51c4-44dd-8872-b960348ffe6c", + "version": "9957fa52-4373-4ec8-b241-1c33a9a10b1d", "display_name": "TF-hello-world", "is_deterministic": "True", "type": "command", "description": "TensorFlow hello-world showing training environment with $TF_CONFIG", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5559a10b-f428-4259-a127-d246099b26e8/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/9c9cfba9-82bd-45db-ad06-07009d1d9672/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": "2" @@ -428,17 +401,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:43:17.3132603\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:38:49.285054\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:43:17.3132603\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:38:49.8042688\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -446,7 +419,7 @@ "Connection": "keep-alive", "Content-Length": "1064", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -480,7 +453,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/75a08d3c-51c4-44dd-8872-b960348ffe6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/9957fa52-4373-4ec8-b241-1c33a9a10b1d" } }, "outputs": {}, @@ -492,22 +465,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2977", + "Content-Length": "3024", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:43:22 GMT", + "Date": "Wed, 12 Oct 2022 12:01:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d504497a348db9cbab45a135a10ce251-d1a1b0e26a4bd2c1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5c760d1ca6cff2d413e8b9b6e21c159b-c1751b4efa5d831a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f21924cf-b77f-434e-a6d6-e1eb23c5c2ce", - "x-ms-ratelimit-remaining-subscription-writes": "1136", + "x-ms-correlation-request-id": "4887486b-c2ef-4e8b-ba43-be9f7186b2a0", + "x-ms-ratelimit-remaining-subscription-writes": "1143", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234322Z:f21924cf-b77f-434e-a6d6-e1eb23c5c2ce", - "x-request-time": "2.737" + "x-ms-routing-request-id": "JAPANEAST:20221012T120158Z:4887486b-c2ef-4e8b-ba43-be9f7186b2a0", + "x-request-time": "2.653" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -537,7 +510,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -545,7 +519,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -578,7 +553,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/75a08d3c-51c4-44dd-8872-b960348ffe6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/9957fa52-4373-4ec8-b241-1c33a9a10b1d" } }, "inputs": {}, @@ -586,8 +561,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:43:22.139824\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:01:58.0039407\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json index 0586b153978bd..710f6e65e4fa5 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:32 GMT", + "Date": "Wed, 12 Oct 2022 12:03:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b811e5be6df0d95e3e9c02b6a74026c1-fd5e1fc2ee036e28-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-477b69d8803ec519502257bc0870ae67-fe6a76db580fd08e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "989d8235-78b6-4dd0-925f-8f7dadf43f44", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "4cc41acb-056a-44ac-87e7-5c0990f2b622", + "x-ms-ratelimit-remaining-subscription-reads": "11937", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234432Z:989d8235-78b6-4dd0-925f-8f7dadf43f44", - "x-request-time": "0.221" + "x-ms-routing-request-id": "JAPANEAST:20221012T120317Z:4cc41acb-056a-44ac-87e7-5c0990f2b622", + "x-request-time": "0.227" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,22 +52,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:44:17.418\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:33 GMT", + "Date": "Wed, 12 Oct 2022 12:03:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-739c26207c0f26a9283956de54f300f2-b4133a44cf7da59a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c272a3683c67c557e3cbb95d1edcd511-8743208d8ecda865-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80728e52-42b3-40e2-83bd-249cf9b77b7c", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "fe1e6b53-9851-4312-9de8-63b447ecf253", + "x-ms-ratelimit-remaining-subscription-reads": "11936", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234433Z:80728e52-42b3-40e2-83bd-249cf9b77b7c", - "x-request-time": "0.090" + "x-ms-routing-request-id": "JAPANEAST:20221012T120320Z:fe1e6b53-9851-4312-9de8-63b447ecf253", + "x-request-time": "0.133" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:33 GMT", + "Date": "Wed, 12 Oct 2022 12:03:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a39e0a4217250b101591d1c4b55af6fa-bb181cc67539d343-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-884a28e825d507a45e1ab8a1d1802e9b-b9a9ff0268530507-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d617218-39c1-480e-93e4-6b3ca1a0295f", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "f21b6218-35ea-4353-a0f0-0651592bd4f2", + "x-ms-ratelimit-remaining-subscription-writes": "1166", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234434Z:6d617218-39c1-480e-93e4-6b3ca1a0295f", - "x-request-time": "0.101" + "x-ms-routing-request-id": "JAPANEAST:20221012T120320Z:f21b6218-35ea-4353-a0f0-0651592bd4f2", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:34 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:44:33 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/train.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "4233", "Content-MD5": "FqEPHhQCo3mzHver6j7Q9g==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:44:34 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "IyBAdGl0bGUgTGljZW5zZWQgdW5kZXIgdGhlIEFwYWNoZSBMaWNlbnNlLCBWZXJzaW9uIDIuMCAodGhlICJMaWNlbnNlIik7DQojIHlvdSBtYXkgbm90IHVzZSB0aGlzIGZpbGUgZXhjZXB0IGluIGNvbXBsaWFuY2Ugd2l0aCB0aGUgTGljZW5zZS4NCiMgWW91IG1heSBvYnRhaW4gYSBjb3B5IG9mIHRoZSBMaWNlbnNlIGF0DQojDQojIGh0dHBzOi8vd3d3LmFwYWNoZS5vcmcvbGljZW5zZXMvTElDRU5TRS0yLjANCiMNCiMgVW5sZXNzIHJlcXVpcmVkIGJ5IGFwcGxpY2FibGUgbGF3IG9yIGFncmVlZCB0byBpbiB3cml0aW5nLCBzb2Z0d2FyZQ0KIyBkaXN0cmlidXRlZCB1bmRlciB0aGUgTGljZW5zZSBpcyBkaXN0cmlidXRlZCBvbiBhbiAiQVMgSVMiIEJBU0lTLA0KIyBXSVRIT1VUIFdBUlJBTlRJRVMgT1IgQ09ORElUSU9OUyBPRiBBTlkgS0lORCwgZWl0aGVyIGV4cHJlc3Mgb3IgaW1wbGllZC4NCiMgU2VlIHRoZSBMaWNlbnNlIGZvciB0aGUgc3BlY2lmaWMgbGFuZ3VhZ2UgZ292ZXJuaW5nIHBlcm1pc3Npb25zIGFuZA0KIyBsaW1pdGF0aW9ucyB1bmRlciB0aGUgTGljZW5zZS4NCiMNCiMgU2NyaXB0IGFkYXB0ZWQgZnJvbTogaHR0cHM6Ly9naXRodWIuY29tL3RlbnNvcmZsb3cvZG9jcy9ibG9iL21hc3Rlci9zaXRlL2VuL3R1dG9yaWFscy9kaXN0cmlidXRlL211bHRpX3dvcmtlcl93aXRoX2tlcmFzLmlweW5iDQojID09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NCg0KaW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQganNvbg0KaW1wb3J0IG9zDQoNCmltcG9ydCBudW1weSBhcyBucA0KaW1wb3J0IHRlbnNvcmZsb3cgYXMgdGYNCg0KDQpkZWYgbW5pc3RfZGF0YXNldChiYXRjaF9zaXplKToNCiAgICAoeF90cmFpbiwgeV90cmFpbiksIF8gPSB0Zi5rZXJhcy5kYXRhc2V0cy5tbmlzdC5sb2FkX2RhdGEoKQ0KICAgICMgVGhlIGB4YCBhcnJheXMgYXJlIGluIHVpbnQ4IGFuZCBoYXZlIHZhbHVlcyBpbiB0aGUgcmFuZ2UgWzAsIDI1NV0uDQogICAgIyBXZSBuZWVkIHRvIGNvbnZlcnQgdGhlbSB0byBmbG9hdDMyIHdpdGggdmFsdWVzIGluIHRoZSByYW5nZSBbMCwgMV0NCiAgICB4X3RyYWluID0geF90cmFpbiAvIG5wLmZsb2F0MzIoMjU1KQ0KICAgIHlfdHJhaW4gPSB5X3RyYWluLmFzdHlwZShucC5pbnQ2NCkNCiAgICB0cmFpbl9kYXRhc2V0ID0gdGYuZGF0YS5EYXRhc2V0LmZyb21fdGVuc29yX3NsaWNlcygoeF90cmFpbiwgeV90cmFpbikpLnNodWZmbGUoNjAwMDApLnJlcGVhdCgpLmJhdGNoKGJhdGNoX3NpemUpDQogICAgcmV0dXJuIHRyYWluX2RhdGFzZXQNCg0KDQpkZWYgYnVpbGRfYW5kX2NvbXBpbGVfY25uX21vZGVsKCk6DQogICAgbW9kZWwgPSB0Zi5rZXJhcy5TZXF1ZW50aWFsKA0KICAgICAgICBbDQogICAgICAgICAgICB0Zi5rZXJhcy5JbnB1dChzaGFwZT0oMjgsIDI4KSksDQogICAgICAgICAgICB0Zi5rZXJhcy5sYXllcnMuUmVzaGFwZSh0YXJnZXRfc2hhcGU9KDI4LCAyOCwgMSkpLA0KICAgICAgICAgICAgdGYua2VyYXMubGF5ZXJzLkNvbnYyRCgzMiwgMywgYWN0aXZhdGlvbj0icmVsdSIpLA0KICAgICAgICAgICAgdGYua2VyYXMubGF5ZXJzLkZsYXR0ZW4oKSwNCiAgICAgICAgICAgIHRmLmtlcmFzLmxheWVycy5EZW5zZSgxMjgsIGFjdGl2YXRpb249InJlbHUiKSwNCiAgICAgICAgICAgIHRmLmtlcmFzLmxheWVycy5EZW5zZSgxMCksDQogICAgICAgIF0NCiAgICApDQogICAgbW9kZWwuY29tcGlsZSgNCiAgICAgICAgbG9zcz10Zi5rZXJhcy5sb3NzZXMuU3BhcnNlQ2F0ZWdvcmljYWxDcm9zc2VudHJvcHkoZnJvbV9sb2dpdHM9VHJ1ZSksDQogICAgICAgIG9wdGltaXplcj10Zi5rZXJhcy5vcHRpbWl6ZXJzLlNHRChsZWFybmluZ19yYXRlPTAuMDAxKSwNCiAgICAgICAgbWV0cmljcz1bImFjY3VyYWN5Il0sDQogICAgKQ0KICAgIHJldHVybiBtb2RlbA0KDQoNCmRlZiBfaXNfY2hpZWYodGFza190eXBlLCB0YXNrX2lkKToNCiAgICAjIElmIGB0YXNrX3R5cGVgIGlzIE5vbmUsIHRoaXMgbWF5IGJlIG9wZXJhdGluZyBhcyBzaW5nbGUgd29ya2VyLCB3aGljaCB3b3Jrcw0KICAgICMgZWZmZWN0aXZlbHkgYXMgY2hpZWYuDQogICAgcmV0dXJuIHRhc2tfdHlwZSBpcyBOb25lIG9yIHRhc2tfdHlwZSA9PSAiY2hpZWYiIG9yICh0YXNrX3R5cGUgPT0gIndvcmtlciIgYW5kIHRhc2tfaWQgPT0gMCkNCg0KDQpkZWYgX2dldF90ZW1wX2RpcihkaXJwYXRoLCB0YXNrX2lkKToNCiAgICBiYXNlX2RpcnBhdGggPSAid29ya2VydGVtcF8iICsgc3RyKHRhc2tfaWQpDQogICAgdGVtcF9kaXIgPSBvcy5wYXRoLmpvaW4oZGlycGF0aCwgYmFzZV9kaXJwYXRoKQ0KICAgIHRmLmlvLmdmaWxlLm1ha2VkaXJzKHRlbXBfZGlyKQ0KICAgIHJldHVybiB0ZW1wX2Rpcg0KDQoNCmRlZiB3cml0ZV9maWxlcGF0aChmaWxlcGF0aCwgdGFza190eXBlLCB0YXNrX2lkKToNCiAgICBkaXJwYXRoID0gb3MucGF0aC5kaXJuYW1lKGZpbGVwYXRoKQ0KICAgIGJhc2UgPSBvcy5wYXRoLmJhc2VuYW1lKGZpbGVwYXRoKQ0KICAgIGlmIG5vdCBfaXNfY2hpZWYodGFza190eXBlLCB0YXNrX2lkKToNCiAgICAgICAgZGlycGF0aCA9IF9nZXRfdGVtcF9kaXIoZGlycGF0aCwgdGFza19pZCkNCiAgICByZXR1cm4gb3MucGF0aC5qb2luKGRpcnBhdGgsIGJhc2UpDQoNCg0KZGVmIG1haW4oKToNCiAgICBwYXJzZXIgPSBhcmdwYXJzZS5Bcmd1bWVudFBhcnNlcigpDQogICAgcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1lcG9jaHMiLCB0eXBlPWludCwgZGVmYXVsdD0zKQ0KICAgIHBhcnNlci5hZGRfYXJndW1lbnQoIi0tc3RlcHMtcGVyLWVwb2NoIiwgdHlwZT1pbnQsIGRlZmF1bHQ9NzApDQogICAgcGFyc2VyLmFkZF9hcmd1bWVudCgiLS1wZXItd29ya2VyLWJhdGNoLXNpemUiLCB0eXBlPWludCwgZGVmYXVsdD02NCkNCiAgICBwYXJzZXIuYWRkX2FyZ3VtZW50KA0KICAgICAgICAiLS1tb2RlbC1kaXIiLA0KICAgICAgICB0eXBlPXN0ciwNCiAgICAgICAgZGVmYXVsdD0ib3V0cHV0cyIsDQogICAgICAgIGhlbHA9ImRpcmVjdG9yeSB0byBzYXZlIHRoZSBtb2RlbCB0byIsDQogICAgKQ0KDQogICAgYXJncyA9IHBhcnNlci5wYXJzZV9hcmdzKCkNCg0KICAgIHRmX2NvbmZpZyA9IGpzb24ubG9hZHMob3MuZW52aXJvblsiVEZfQ09ORklHIl0pDQogICAgbnVtX3dvcmtlcnMgPSBsZW4odGZfY29uZmlnWyJjbHVzdGVyIl1bIndvcmtlciJdKQ0KDQogICAgc3RyYXRlZ3kgPSB0Zi5kaXN0cmlidXRlLmV4cGVyaW1lbnRhbC5NdWx0aVdvcmtlck1pcnJvcmVkU3RyYXRlZ3koKQ0KDQogICAgIyBIZXJlIHRoZSBiYXRjaCBzaXplIHNjYWxlcyB1cCBieSBudW1iZXIgb2Ygd29ya2VycyBzaW5jZQ0KICAgICMgYHRmLmRhdGEuRGF0YXNldC5iYXRjaGAgZXhwZWN0cyB0aGUgZ2xvYmFsIGJhdGNoIHNpemUuDQogICAgZ2xvYmFsX2JhdGNoX3NpemUgPSBhcmdzLnBlcl93b3JrZXJfYmF0Y2hfc2l6ZSAqIG51bV93b3JrZXJzDQogICAgbXVsdGlfd29ya2VyX2RhdGFzZXQgPSBtbmlzdF9kYXRhc2V0KGdsb2JhbF9iYXRjaF9zaXplKQ0KDQogICAgd2l0aCBzdHJhdGVneS5zY29wZSgpOg0KICAgICAgICAjIE1vZGVsIGJ1aWxkaW5nL2NvbXBpbGluZyBuZWVkIHRvIGJlIHdpdGhpbiBgc3RyYXRlZ3kuc2NvcGUoKWAuDQogICAgICAgIG11bHRpX3dvcmtlcl9tb2RlbCA9IGJ1aWxkX2FuZF9jb21waWxlX2Nubl9tb2RlbCgpDQoNCiAgICAjIEtlcmFzJyBgbW9kZWwuZml0KClgIHRyYWlucyB0aGUgbW9kZWwgd2l0aCBzcGVjaWZpZWQgbnVtYmVyIG9mIGVwb2NocyBhbmQNCiAgICAjIG51bWJlciBvZiBzdGVwcyBwZXIgZXBvY2guDQogICAgbXVsdGlfd29ya2VyX21vZGVsLmZpdChtdWx0aV93b3JrZXJfZGF0YXNldCwgZXBvY2hzPWFyZ3MuZXBvY2hzLCBzdGVwc19wZXJfZXBvY2g9YXJncy5zdGVwc19wZXJfZXBvY2gpDQoNCiAgICAjIFNhdmUgdGhlIG1vZGVsDQogICAgdGFza190eXBlLCB0YXNrX2lkID0gKHRmX2NvbmZpZ1sidGFzayJdWyJ0eXBlIl0sIHRmX2NvbmZpZ1sidGFzayJdWyJpbmRleCJdKQ0KICAgIHdyaXRlX21vZGVsX3BhdGggPSB3cml0ZV9maWxlcGF0aChhcmdzLm1vZGVsX2RpciwgdGFza190eXBlLCB0YXNrX2lkKQ0KDQogICAgbXVsdGlfd29ya2VyX21vZGVsLnNhdmUod3JpdGVfbW9kZWxfcGF0aCkNCg0KDQppZiBfX25hbWVfXyA9PSAiX19tYWluX18iOg0KICAgIG1haW4oKQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "FqEPHhQCo3mzHver6j7Q9g==", - "Date": "Thu, 29 Sep 2022 23:44:33 GMT", - "ETag": "\u00220x8DAA2748FFF5F97\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:44:34 GMT", + "Date": "Wed, 12 Oct 2022 12:03:20 GMT", + "ETag": "\u00220x8DAAC4687572B77\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:40:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "nK8O78QfKq0=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:40:14 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "0e4ccce5-773d-43ca-bde2-ca81f965bcaf", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/train.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/train.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:44:34 GMT", - "x-ms-meta-name": "274ae6d0-7cd9-4bc6-ad14-3d2a0f8af266", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:03:21 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:44:33 GMT", - "ETag": "\u00220x8DAA2749008AD11\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:44:34 GMT", + "Date": "Wed, 12 Oct 2022 12:03:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/274ae6d0-7cd9-4bc6-ad14-3d2a0f8af266/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0e4ccce5-773d-43ca-bde2-ca81f965bcaf/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -282,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -292,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "822", + "Content-Length": "820", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:35 GMT", + "Date": "Wed, 12 Oct 2022 12:03:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/274ae6d0-7cd9-4bc6-ad14-3d2a0f8af266/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-dc5b895c98ee17c320dbc7d39caa5f19-594f04cd00a62e0b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b62b0b144250a61b8d011be672f3ca5c-6d95694399eda5a5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f547100-e164-4540-83d1-db7cdb6637c7", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "0b979b57-939f-4ff4-afdd-c2f15a22129a", + "x-ms-ratelimit-remaining-subscription-writes": "1125", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234435Z:6f547100-e164-4540-83d1-db7cdb6637c7", - "x-request-time": "1.167" + "x-ms-routing-request-id": "JAPANEAST:20221012T120322Z:0b979b57-939f-4ff4-afdd-c2f15a22129a", + "x-request-time": "0.175" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/274ae6d0-7cd9-4bc6-ad14-3d2a0f8af266/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0e4ccce5-773d-43ca-bde2-ca81f965bcaf/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -328,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:44:35.2968161\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:40:15.030401\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:35.2968161\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:03:21.882627\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -349,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "1179", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -361,7 +326,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "python train.py --epochs ${{inputs.epochs}} --model-dir ${{outputs.trained_model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/274ae6d0-7cd9-4bc6-ad14-3d2a0f8af266/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0e4ccce5-773d-43ca-bde2-ca81f965bcaf/versions/1", "environment": "azureml:AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu:15", "resources": { "instance_count": 2 @@ -398,24 +363,24 @@ "Cache-Control": "no-cache", "Content-Length": "2063", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:39 GMT", + "Date": "Wed, 12 Oct 2022 12:03:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-09e2a5a6fc4eff7a81003f764c52d4d0-dde763a6fc2869f6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8321d621fd1a084595afe148ad5033bc-a1cb8ece18d001a7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c29119fb-3629-4811-8d61-3663b1cd0393", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "cd5dd8b2-6082-4273-964e-575765e6f1d8", + "x-ms-ratelimit-remaining-subscription-writes": "1124", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234439Z:c29119fb-3629-4811-8d61-3663b1cd0393", - "x-request-time": "3.573" + "x-ms-routing-request-id": "JAPANEAST:20221012T120324Z:cd5dd8b2-6082-4273-964e-575765e6f1d8", + "x-request-time": "1.615" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e416d88a-5475-4b9b-a753-37a797874626", - "name": "e416d88a-5475-4b9b-a753-37a797874626", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d4bc9fae-13bf-4a0d-ade5-ac9d711b441f", + "name": "d4bc9fae-13bf-4a0d-ade5-ac9d711b441f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -425,7 +390,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "e416d88a-5475-4b9b-a753-37a797874626", + "version": "d4bc9fae-13bf-4a0d-ade5-ac9d711b441f", "display_name": "TF_mnist", "is_deterministic": "True", "type": "command", @@ -442,7 +407,7 @@ "default": "1.0" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/274ae6d0-7cd9-4bc6-ad14-3d2a0f8af266/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0e4ccce5-773d-43ca-bde2-ca81f965bcaf/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": "2" @@ -457,17 +422,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:44:38.6826293\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:40:17.0911888\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:44:38.6826293\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:40:17.5566509\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -475,7 +440,7 @@ "Connection": "keep-alive", "Content-Length": "1143", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -519,7 +484,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e416d88a-5475-4b9b-a753-37a797874626" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d4bc9fae-13bf-4a0d-ade5-ac9d711b441f" } }, "outputs": {}, @@ -531,22 +496,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3169", + "Content-Length": "3215", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:44:43 GMT", + "Date": "Wed, 12 Oct 2022 12:03:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3da9e1d575cfe792e7a590a6d4dcf40e-3ead97edbb089156-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5d4ffbd65bf499fbccb2aa54156d05ea-89836baff51d8421-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d94430c9-37f2-4bc7-b8f9-871cd43dcd0c", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "0cec9193-2ec5-48a0-a674-a7e6f306206a", + "x-ms-ratelimit-remaining-subscription-writes": "1123", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234444Z:d94430c9-37f2-4bc7-b8f9-871cd43dcd0c", - "x-request-time": "3.006" + "x-ms-routing-request-id": "JAPANEAST:20221012T120331Z:0cec9193-2ec5-48a0-a674-a7e6f306206a", + "x-request-time": "2.409" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -576,7 +541,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -584,7 +550,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -627,7 +594,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e416d88a-5475-4b9b-a753-37a797874626" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d4bc9fae-13bf-4a0d-ade5-ac9d711b441f" } }, "inputs": {}, @@ -635,8 +602,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:44:43.6098275\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:03:30.3314592\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json index 6048b68a74ac2..5d6a91f080f24 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json @@ -7,32 +7,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1512", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:00 GMT", + "Date": "Wed, 12 Oct 2022 12:00:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8d84766e85b1d717633c8fc0b09749ea-867cde083eb68a61-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d7caca153bb6a04681be73125ac0e280-3de595273cc8ec89-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c686afd0-215a-424a-918a-7f3e96b3342e", - "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-correlation-request-id": "3cf7179a-faf5-4daa-9270-83ce0c46c487", + "x-ms-ratelimit-remaining-subscription-reads": "11958", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234200Z:c686afd0-215a-424a-918a-7f3e96b3342e", - "x-request-time": "0.214" + "x-ms-routing-request-id": "JAPANEAST:20221012T120008Z:3cf7179a-faf5-4daa-9270-83ce0c46c487", + "x-request-time": "0.228" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +37,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,36 +52,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 0, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 4, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-29T23:37:31.691\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_dc5ab40763d890e84447fa5acd4914811d2c5dd6d053fcdd1e4e0325cba99bb8_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-30T08:08:43.647\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,32 +85,28 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:01 GMT", + "Date": "Wed, 12 Oct 2022 12:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ae30e64b03083cce5906c3087fe0372f-75a87dc374f27091-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-699dd1a4637ee8d7db02f78267865a95-80311da26c41e6e7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "172b8a33-431c-4a9d-ac29-77031472cda8", - "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-correlation-request-id": "d740593b-2e91-42da-b885-bf2ecc2880d2", + "x-ms-ratelimit-remaining-subscription-reads": "11957", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234201Z:172b8a33-431c-4a9d-ac29-77031472cda8", - "x-request-time": "0.084" + "x-ms-routing-request-id": "JAPANEAST:20221012T120011Z:d740593b-2e91-42da-b885-bf2ecc2880d2", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +121,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,29 +145,27 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "61", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:01 GMT", + "Date": "Wed, 12 Oct 2022 12:00:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-993513c694934815f32713980323e8e9-da20571770481de6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-db09d432347193123495a3d32645d382-db21633f4217240c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae7c9d9f-641e-438b-bc7a-ac0fd19511bc", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "d293f2bd-13a6-4907-8e81-bc710bb1a628", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234201Z:ae7c9d9f-641e-438b-bc7a-ac0fd19511bc", - "x-request-time": "0.099" + "x-ms-routing-request-id": "JAPANEAST:20221012T120014Z:d293f2bd-13a6-4907-8e81-bc710bb1a628", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,98 +173,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:01 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:00:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Thu, 29 Sep 2022 23:42:01 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "1328", "Content-MD5": "/SfPiekmZfyRzf6WSAAdRg==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Thu, 29 Sep 2022 23:42:02 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "aW1wb3J0IGFyZ3BhcnNlDQppbXBvcnQgb3MNCmZyb20gZGF0ZXRpbWUgaW1wb3J0IGRhdGV0aW1lDQoNCnByaW50KCJIZWxsbyBQeXRob24gV29ybGQiKQ0KDQpwYXJzZXIgPSBhcmdwYXJzZS5Bcmd1bWVudFBhcnNlcigpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWlucHV0X2RhdGEiLCB0eXBlPXN0cikNCnBhcnNlci5hZGRfYXJndW1lbnQoIi0taW5wdXRfc3RyaW5nIiwgdHlwZT1zdHIpDQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLW91dHB1dF9kYXRhIiwgdHlwZT1zdHIpDQoNCmFyZ3MgPSBwYXJzZXIucGFyc2VfYXJncygpDQoNCnByaW50KCJzYW1wbGVfaW5wdXRfc3RyaW5nOiAlcyIgJSBhcmdzLmlucHV0X3N0cmluZykNCnByaW50KCJzYW1wbGVfaW5wdXRfZGF0YSBwYXRoOiAlcyIgJSBhcmdzLmlucHV0X2RhdGEpDQpwcmludCgic2FtcGxlX291dHB1dF9kYXRhIHBhdGg6ICVzIiAlIGFyZ3Mub3V0cHV0X2RhdGEpDQoNCmlmIG9zLnBhdGguaXNkaXIoYXJncy5pbnB1dF9kYXRhKSA9PSBUcnVlOg0KICAgIHByaW50KCJmaWxlcyBpbiBpbnB1dF9kYXRhIHBhdGg6ICIpDQogICAgYXJyID0gb3MubGlzdGRpcihhcmdzLmlucHV0X2RhdGEpDQogICAgcHJpbnQoYXJyKQ0KDQogICAgZm9yIGZpbGVuYW1lIGluIGFycjoNCiAgICAgICAgcHJpbnQoInJlYWRpbmcgZmlsZTogJXMgLi4uIiAlIGZpbGVuYW1lKQ0KICAgICAgICB3aXRoIG9wZW4ob3MucGF0aC5qb2luKGFyZ3MuaW5wdXRfZGF0YSwgZmlsZW5hbWUpLCAiciIpIGFzIGhhbmRsZToNCiAgICAgICAgICAgIHByaW50KGhhbmRsZS5yZWFkKCkpDQplbGlmIG9zLnBhdGguaXNmaWxlKGFyZ3MuaW5wdXRfZGF0YSkgPT0gVHJ1ZToNCiAgICB3aXRoIG9wZW4oYXJncy5pbnB1dF9kYXRhLCAiciIpIGFzIGhhbmRsZToNCiAgICAgICAgcHJpbnQoaGFuZGxlLnJlYWQoKSkNCmVsc2U6DQogICAgcHJpbnQoImlucHV0X2RhdGEgaXMgbmVpdGhlciBkaXJlY3Rvcnkgbm9yIGEgZmlsZTogIiArIGFyZ3MuaW5wdXRfZGF0YSkNCg0KY3VyX3RpbWVfc3RyID0gZGF0ZXRpbWUubm93KCkuc3RyZnRpbWUoIiViLSVkLSVZLSVILSVNLSVTIikNCg0KcHJpbnQoIldyaXRpbmcgZmlsZTogJXMiICUgb3MucGF0aC5qb2luKGFyZ3Mub3V0cHV0X2RhdGEsICJmaWxlLSIgKyBjdXJfdGltZV9zdHIgKyAiLnR4dCIpKQ0Kd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLm91dHB1dF9kYXRhLCAiZmlsZS0iICsgY3VyX3RpbWVfc3RyICsgIi50eHQiKSwgInd0IikgYXMgdGV4dF9maWxlOg0KICAgIHByaW50KGYiTG9nZ2luZyBkYXRlIHRpbWU6IHtjdXJfdGltZV9zdHJ9IiwgZmlsZT10ZXh0X2ZpbGUpDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "/SfPiekmZfyRzf6WSAAdRg==", - "Date": "Thu, 29 Sep 2022 23:42:01 GMT", - "ETag": "\u00220x8DAA274355C6AA1\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:42:02 GMT", + "Date": "Wed, 12 Oct 2022 12:00:14 GMT", + "ETag": "\u00220x8DAAC46205E82A6\u0022", + "Last-Modified": "Wed, 12 Oct 2022 11:37:21 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "FobJSfQolYA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Wed, 12 Oct 2022 11:37:21 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "a6a06b79-f646-47e2-b225-c0c9ba6cd358", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src/hello.py?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Thu, 29 Sep 2022 23:42:02 GMT", - "x-ms-meta-name": "4659c9fa-0aaf-499b-a2f6-d588c0173a89", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Wed, 12 Oct 2022 12:00:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Thu, 29 Sep 2022 23:42:01 GMT", - "ETag": "\u00220x8DAA2743569D63B\u0022", - "Last-Modified": "Thu, 29 Sep 2022 23:42:02 GMT", + "Date": "Wed, 12 Oct 2022 12:00:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4659c9fa-0aaf-499b-a2f6-d588c0173a89/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a6a06b79-f646-47e2-b225-c0c9ba6cd358/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -295,7 +247,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -305,31 +257,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "822", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:02 GMT", + "Date": "Wed, 12 Oct 2022 12:00:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4659c9fa-0aaf-499b-a2f6-d588c0173a89/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a094e6a98de37f53570fbd69e5dffe54-4838ad9763c5235b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-603711ecc62e7173361ea289db50e974-93c2b2e36fdc1181-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "175c662e-46bf-471e-907d-35abc40f5db1", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "1a56f61d-6bab-44ee-8a12-ada6f3dac00c", + "x-ms-ratelimit-remaining-subscription-writes": "1159", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234202Z:175c662e-46bf-471e-907d-35abc40f5db1", - "x-request-time": "0.380" + "x-ms-routing-request-id": "JAPANEAST:20221012T120017Z:1a56f61d-6bab-44ee-8a12-ada6f3dac00c", + "x-request-time": "0.195" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4659c9fa-0aaf-499b-a2f6-d588c0173a89/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a6a06b79-f646-47e2-b225-c0c9ba6cd358/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -341,14 +293,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-29T23:42:02.7538661\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:37:22.2529342\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:02.7538661\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T12:00:17.0431736\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -362,7 +314,7 @@ "Connection": "keep-alive", "Content-Length": "928", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -372,7 +324,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4659c9fa-0aaf-499b-a2f6-d588c0173a89/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a6a06b79-f646-47e2-b225-c0c9ba6cd358/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5", "name": "azureml_anonymous", "tags": {}, @@ -403,24 +355,24 @@ "Cache-Control": "no-cache", "Content-Length": "2006", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:06 GMT", + "Date": "Wed, 12 Oct 2022 12:00:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-99cfb94c5e65f9b3378cebe07513c46b-9ce9671ac06cda44-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f06cb86daf52a3d6731d68156d565405-c631d7de94fef093-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bce1b15-512b-40ae-a511-cd14d77ba99f", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "abca15e8-afd8-4bed-8ccf-e55c46b163d4", + "x-ms-ratelimit-remaining-subscription-writes": "1158", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234206Z:1bce1b15-512b-40ae-a511-cd14d77ba99f", - "x-request-time": "3.364" + "x-ms-routing-request-id": "JAPANEAST:20221012T120034Z:abca15e8-afd8-4bed-8ccf-e55c46b163d4", + "x-request-time": "12.450" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7748a1f2-9a40-49af-bfe7-21aa01e279ea", - "name": "7748a1f2-9a40-49af-bfe7-21aa01e279ea", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b8ab6eda-997d-4f88-9f39-cc85cc7e22be", + "name": "b8ab6eda-997d-4f88-9f39-cc85cc7e22be", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -430,7 +382,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7748a1f2-9a40-49af-bfe7-21aa01e279ea", + "version": "b8ab6eda-997d-4f88-9f39-cc85cc7e22be", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -450,7 +402,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4659c9fa-0aaf-499b-a2f6-d588c0173a89/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a6a06b79-f646-47e2-b225-c0c9ba6cd358/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -460,17 +412,17 @@ } }, "systemData": { - "createdAt": "2022-09-29T23:42:06.0286214\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T11:37:24.2041272\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-29T23:42:06.0286214\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-12T11:37:24.8042374\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -478,7 +430,7 @@ "Connection": "keep-alive", "Content-Length": "1579", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -528,7 +480,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7748a1f2-9a40-49af-bfe7-21aa01e279ea" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b8ab6eda-997d-4f88-9f39-cc85cc7e22be" } }, "outputs": { @@ -544,22 +496,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3907", + "Content-Length": "3953", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 29 Sep 2022 23:42:11 GMT", + "Date": "Wed, 12 Oct 2022 12:00:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-b7c1a7242bb8203e1bfee68a329d3777-a5e5ee0950578ea7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1bbd2ee71132d25952571ed1b5fde120-a358ebfa9dbb2906-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd796837-beb7-4a39-a4e2-9776e87a745e", - "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-correlation-request-id": "2add8000-4861-4e9e-a092-9be7e38c4fe7", + "x-ms-ratelimit-remaining-subscription-writes": "1157", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220929T234211Z:cd796837-beb7-4a39-a4e2-9776e87a745e", - "x-request-time": "2.952" + "x-ms-routing-request-id": "JAPANEAST:20221012T120042Z:2add8000-4861-4e9e-a092-9be7e38c4fe7", + "x-request-time": "3.334" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -589,7 +541,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -597,7 +550,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": null, @@ -637,7 +591,7 @@ }, "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7748a1f2-9a40-49af-bfe7-21aa01e279ea" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b8ab6eda-997d-4f88-9f39-cc85cc7e22be" } }, "inputs": { @@ -664,8 +618,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-29T23:42:10.7401291\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-12T12:00:41.7397662\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json b/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json index 27c0fbb0962aa..5bc134322ddf4 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:18 GMT", + "Date": "Thu, 13 Oct 2022 01:29:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-50b0ea29caaf27add7b1a52cb2f16b93-65f48220b7f12850-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-11cfac4e96aee523d32c4359a4e167d6-8ce1accf6bb6d18a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c05c79a9-a1bc-4059-abd8-03804d799dea", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "02fcadd6-09f8-4549-bb8e-7b003dfcd9fb", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005018Z:c05c79a9-a1bc-4059-abd8-03804d799dea", - "x-request-time": "0.219" + "x-ms-routing-request-id": "JAPANEAST:20221013T012912Z:02fcadd6-09f8-4549-bb8e-7b003dfcd9fb", + "x-request-time": "0.249" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-29T22:16:14.236098\u002B00:00", - "modifiedOn": "2022-09-29T22:17:32.3214572\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -56,23 +56,40 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, + "currentNodeCount": 2, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-30T00:26:22.685\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-10-13T00:58:21.596\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_34a31d15982074c4837d0017243b96a16641075ee8ec19db3b4265f812051929_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ad1af6e8b8790e0f494222294d51c00c87a7f0c20c4c0d09352e1793d1d134bf_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + }, + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -91,7 +108,7 @@ "Connection": "keep-alive", "Content-Length": "590", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -137,24 +154,24 @@ "Cache-Control": "no-cache", "Content-Length": "1792", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:21 GMT", + "Date": "Thu, 13 Oct 2022 01:29:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a008c44af4d8bf43e0e3a39ffc515b3c-5b4f75c55868bfc2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-27de7873ecbdccdd07a92de3fee5ff17-54d80a54da9178c4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "265d94be-9b27-494e-b9b3-9e5a83331791", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "ff2ab224-2c9d-4362-bb74-7fb825647b71", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005022Z:265d94be-9b27-494e-b9b3-9e5a83331791", - "x-request-time": "2.332" + "x-ms-routing-request-id": "JAPANEAST:20221013T012917Z:ff2ab224-2c9d-4362-bb74-7fb825647b71", + "x-request-time": "1.458" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6030bf5-a565-4fef-ba5d-94ee4f14c216", - "name": "b6030bf5-a565-4fef-ba5d-94ee4f14c216", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d", + "name": "59f10397-75e0-4ec1-94b9-6c29fba1822d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -164,7 +181,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b6030bf5-a565-4fef-ba5d-94ee4f14c216", + "version": "59f10397-75e0-4ec1-94b9-6c29fba1822d", "display_name": "import_step", "is_deterministic": "True", "type": "command", @@ -203,11 +220,11 @@ } }, "systemData": { - "createdAt": "2022-09-30T00:50:21.4793809\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:46:50.4261873\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-30T00:50:21.4793809\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-09-26T03:46:50.9028034\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -219,7 +236,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -227,11 +244,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:22 GMT", + "Date": "Thu, 13 Oct 2022 01:29:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-dabf922245d271ec2848e2381b3c6079-5895f7772fcdde90-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-851a47447a1b9fe07a58d71982fd3a4a-f34aa147f3f51d33-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -240,11 +257,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28386631-232c-487d-9bcd-c1f7e1af1889", - "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-correlation-request-id": "d01245a5-fbc7-4ce3-a2e3-e0b928d44344", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005022Z:28386631-232c-487d-9bcd-c1f7e1af1889", - "x-request-time": "0.210" + "x-ms-routing-request-id": "JAPANEAST:20221013T012917Z:d01245a5-fbc7-4ce3-a2e3-e0b928d44344", + "x-request-time": "0.120" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -259,17 +276,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sas3vrosykmdp4s", - "containerName": "azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-29T22:16:05.5940148\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-29T22:16:06.5431636\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -283,7 +300,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -291,21 +308,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:22 GMT", + "Date": "Thu, 13 Oct 2022 01:29:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8498900df77cd6d85601bacd3792c516-bcce54bc3b1de9a4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-19a3560e70cde003f32f95ed77f5a52b-93b86043daf67b64-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": "e7771d1b-b536-424d-99b0-ebb4caf7b356", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "2ad0e992-f6f4-4964-bf75-580dd50751e5", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005022Z:e7771d1b-b536-424d-99b0-ebb4caf7b356", - "x-request-time": "0.127" + "x-ms-routing-request-id": "JAPANEAST:20221013T012918Z:2ad0e992-f6f4-4964-bf75-580dd50751e5", + "x-request-time": "0.141" }, "ResponseBody": { "secretsType": "AccountKey", @@ -313,472 +330,73 @@ } }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_component_test.yml", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/import_job/import_component_test.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Fri, 30 Sep 2022 00:50:22 GMT", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Thu, 13 Oct 2022 01:29:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_component_test.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", + "Accept-Ranges": "bytes", "Content-Length": "389", "Content-MD5": "kKaUQs8jWrCtVsHEaV\u002BV3g==", "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "JHNjaGVtYTogaHR0cDovL2F6dXJlbWwvc2RrLTItMC9JbXBvcnRDb21wb25lbnQuanNvbg0KdHlwZTogaW1wb3J0DQoNCm5hbWU6IG1pY3Jvc29mdHNhbXBsZXNfaW1wb3J0X2NvbXBvbmVudF9iYXNpYw0KZGlzcGxheV9uYW1lOiBJbXBvcnRDb21wb25lbnRCYXNpYw0KZGVzY3JpcHRpb246IFRoaXMgaXMgdGhlIGJhc2ljIGltcG9ydCBjb21wb25lbnQNCnRhZ3M6DQogIHRhZzogdGFndmFsdWUNCiAgb3duZXI6IHNka3RlYW0NCg0KdmVyc2lvbjogMC4wLjENCg0Kc291cmNlOg0KICB0eXBlOg0KICAgIHR5cGU6IHN0cmluZw0KICBjb25uZWN0aW9uOg0KICAgIHR5cGU6IHN0cmluZw0KICBxdWVyeToNCiAgICB0eXBlOiBzdHJpbmcNCg0Kb3V0cHV0Og0KICB0eXBlOiBtbHRhYmxlDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "kKaUQs8jWrCtVsHEaV\u002BV3g==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC1E33286\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "C9ZCCj45FgI=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test_azuresynapseanalytics.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "290", - "Content-MD5": "bY8pKGnIv8i4TiwsYkvE7g==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpkZXNjcmlwdGlvbjogInRlc3RfZGVzY3JpcHRpb24iDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCnNvdXJjZToNCiAgdHlwZTogYXp1cmVzeW5hcHNlYW5hbHl0aWNzDQogIGNvbm5lY3Rpb246IGF6dXJlbWw6bXlfdXNlcm5hbWVfcGFzc3dvcmQNCiAgcXVlcnk6IHNlbGVjdCAqIGZyb20gUkVHSU9ODQpvdXRwdXQ6DQogIHR5cGU6IG1sdGFibGUNCiAgcGF0aDogYXp1cmVtbDovL2RhdGFzdG9yZXMvd29ya3NwYWNlYmxvYnN0b3JlL3BhdGhzL291dHB1dF9kaXIvDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "bY8pKGnIv8i4TiwsYkvE7g==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC1ECCE18\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "vNG228QJoyc=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "279", - "Content-MD5": "vKF2h8cRBJPkfgI/6ZCTvw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpkZXNjcmlwdGlvbjogInRlc3RfZGVzY3JpcHRpb24iDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCnNvdXJjZToNCiAgdHlwZTogYXp1cmVzcWxkYg0KICBjb25uZWN0aW9uOiBhenVyZW1sOm15X3VzZXJuYW1lX3Bhc3N3b3JkDQogIHF1ZXJ5OiBzZWxlY3QgKiBmcm9tIFJFR0lPTg0Kb3V0cHV0Og0KICB0eXBlOiBtbHRhYmxlDQogIHBhdGg6IGF6dXJlbWw6Ly9kYXRhc3RvcmVzL3dvcmtzcGFjZWJsb2JzdG9yZS9wYXRocy9vdXRwdXRfZGlyLw0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "vKF2h8cRBJPkfgI/6ZCTvw==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC1F690AC\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "Vlx/MMzbDBA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_component_test_missing_keys.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "64", - "Content-MD5": "JA/eqWaFg5ffRV494QhtiA==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpuYW1lOiAidGVzdDEiDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "JA/eqWaFg5ffRV494QhtiA==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC2000534\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "Sr/j\u002B/JgZTU=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test_missing_fields.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "195", - "Content-MD5": "pmvI9KF9bym9lAVTTylclg==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpuYW1lOiAidGVzdDEiDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCnNvdXJjZToNCiAgdHlwZTogYXp1cmVzcWxkYg0Kb3V0cHV0Og0KICB0eXBlOiBtbHRhYmxlDQogIHBhdGg6IGF6dXJlbWw6Ly9kYXRhc3RvcmVzL3dvcmtzcGFjZWJsb2JzdG9yZS9wYXRocy9vdXRwdXRfZGlyL2F6dXJlc3FsLw0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "pmvI9KF9bym9lAVTTylclg==", - "Date": "Fri, 30 Sep 2022 00:50:22 GMT", - "ETag": "\u00220x8DAA27DC2029CE3\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "WEkTLT/qWN0=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test_missing_keys.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "64", - "Content-MD5": "JA/eqWaFg5ffRV494QhtiA==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpuYW1lOiAidGVzdDEiDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCg==", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "JA/eqWaFg5ffRV494QhtiA==", - "Date": "Fri, 30 Sep 2022 00:50:22 GMT", - "ETag": "\u00220x8DAA27DC203390C\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "Sr/j\u002B/JgZTU=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test_unknown_fields.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "269", - "Content-MD5": "wM/M9emBJJqgDDRJ2JBcFw==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpuYW1lOiAidGVzdDEiDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCnNvdXJjZToNCiAgdHlwZTogYXp1cmVzcWxkYg0KICBjb25uZWN0aW9uOiBhenVyZW1sOm15X3VzZXJuYW1lX3Bhc3N3b3JkDQogIHBhdGg6IHNlbGVjdCAqIGZyb20gUkVHSU9ODQpvdXRwdXQ6DQogIHR5cGU6IG1sdGFibGUNCiAgcGF0aDogYXp1cmVtbDovL2RhdGFzdG9yZXMvd29ya3NwYWNlYmxvYnN0b3JlL3BhdGhzL291dHB1dF9kaXIvYXp1cmVzcWwvDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "wM/M9emBJJqgDDRJ2JBcFw==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC2047161\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "V0m1486xmuY=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test_s3.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "275", - "Content-MD5": "hBK8gpzp22lfKyDLM6nzJA==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpuYW1lOiAidGVzdDEiDQpkZXNjcmlwdGlvbjogInRlc3RfZGVzY3JpcHRpb24iDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCnNvdXJjZToNCiAgdHlwZTogczMNCiAgY29ubmVjdGlvbjogYXp1cmVtbDpteV91c2VybmFtZV9wYXNzd29yZA0KICBwYXRoOiB0ZXN0MS8qDQpvdXRwdXQ6DQogIHR5cGU6IHVyaV9mb2xkZXINCiAgcGF0aDogYXp1cmVtbDovL2RhdGFzdG9yZXMvd29ya3NwYWNlYmxvYnN0b3JlL3BhdGhzL291dHB1dF9kaXIvDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "hBK8gpzp22lfKyDLM6nzJA==", - "Date": "Fri, 30 Sep 2022 00:50:22 GMT", - "ETag": "\u00220x8DAA27DC204986C\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "Fr/5TpRwNIo=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_pipeline_test.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "720", - "Content-MD5": "tKxNmCy3UfLE0x4suslpeA==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "JHNjaGVtYTogaHR0cDovL2F6dXJlbWwvc2RrLTItMC9QaXBlbGluZUpvYi5qc29uDQp0eXBlOiBwaXBlbGluZQ0KDQpkZXNjcmlwdGlvbjogJ2ltcG9ydF9waXBlbGluZV90ZXN0X2Rlc2NyaXB0aW9uJw0KY29tcHV0ZTogYXp1cmVtbDpjcHUtY2x1c3Rlcg0KDQpqb2JzOg0KICBpbXBvcnRfc3RlcDoNCiAgICB0eXBlOiBpbXBvcnQNCiAgICBzb3VyY2U6DQogICAgICB0eXBlOiBhenVyZXNxbGRiDQogICAgICBxdWVyeTogPi0NCiAgICAgICAgc2VsZWN0ICogZnJvbSBSRUdJT04NCiAgICAgIGNvbm5lY3Rpb246IGF6dXJlbWw6bXlfdXNlcm5hbWVfcGFzc3dvcmQNCiAgICBvdXRwdXQ6DQogICAgICB0eXBlOiBtbHRhYmxlDQogICAgICBwYXRoOiBhenVyZW1sOi8vZGF0YXN0b3Jlcy93b3Jrc3BhY2VibG9ic3RvcmUvcGF0aHMvb3V0cHV0X2Rpci8NCg0KICBkYXRhX3ByZXBfc3RlcDoNCiAgICB0eXBlOiBjb21tYW5kDQogICAgaW5wdXRzOg0KICAgICAgaW1wb3J0ZWRfZGF0YToNCiAgICAgICAgdHlwZTogbWx0YWJsZQ0KICAgICAgICBwYXRoOiAke3twYXJlbnQuam9icy5pbXBvcnRfc3RlcC5vdXRwdXRzLm91dHB1dH19DQogICAgY29kZTogLi8NCiAgICBlbnZpcm9ubWVudDogYXp1cmVtbDpBenVyZU1MLXNrbGVhcm4tMC4yNC11YnVudHUxOC4wNC1weTM3LWN1ZGExMS1ncHU6Mw0KICAgIGNvbW1hbmQ6IGVjaG8gJHt7aW5wdXRzLmltcG9ydGVkX2RhdGF9fQ0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "tKxNmCy3UfLE0x4suslpeA==", - "Date": "Fri, 30 Sep 2022 00:50:22 GMT", - "ETag": "\u00220x8DAA27DC2050D88\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", + "Date": "Thu, 13 Oct 2022 01:29:18 GMT", + "ETag": "\u00220x8DA9F71C1CB79C2\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:46:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "ZUBodei1po0=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_pipeline_component_test.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "779", - "Content-MD5": "BcbvtCoJcf7XDgqiLMcfuQ==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "JHNjaGVtYTogaHR0cDovL2F6dXJlbWwvc2RrLTItMC9QaXBlbGluZUpvYi5qc29uDQp0eXBlOiBwaXBlbGluZQ0KDQpkZXNjcmlwdGlvbjogJ2ltcG9ydF9waXBlbGluZV90ZXN0X2Rlc2NyaXB0aW9uJw0KY29tcHV0ZTogYXp1cmVtbDpjcHUtY2x1c3Rlcg0KDQpqb2JzOg0KICBpbXBvcnRfc3RlcDoNCiAgICB0eXBlOiBpbXBvcnQNCiAgICBjb21wb25lbnQ6IC4vaW1wb3J0X2NvbXBvbmVudF90ZXN0LnltbA0KICAgIGlucHV0czoNCiAgICAgIHR5cGU6IGF6dXJlc3FsZGINCiAgICAgIGNvbm5lY3Rpb246IGF6dXJlbWw6bXlfdXNlcm5hbWVfcGFzc3dvcmQNCiAgICAgIHF1ZXJ5OiBzZWxlY3QgKiBmcm9tIFJFR0lPTg0KICAgIG91dHB1dHM6DQogICAgICBvdXRwdXQ6DQogICAgICAgIHR5cGU6IG1sdGFibGUNCiAgICAgICAgcGF0aDogYXp1cmVtbDovL2RhdGFzdG9yZXMvd29ya3NwYWNlYmxvYnN0b3JlL3BhdGhzL291dHB1dF9kaXIvDQoNCiAgZGF0YV9wcmVwX3N0ZXA6DQogICAgdHlwZTogY29tbWFuZA0KICAgIGlucHV0czoNCiAgICAgIGltcG9ydGVkX2RhdGE6DQogICAgICAgIHR5cGU6IG1sdGFibGUNCiAgICAgICAgcGF0aDogJHt7cGFyZW50LmpvYnMuaW1wb3J0X3N0ZXAub3V0cHV0cy5vdXRwdXR9fQ0KICAgIGNvZGU6IC4uL3B5dGhvbg0KICAgIGVudmlyb25tZW50OiBhenVyZW1sOkF6dXJlTUwtc2tsZWFybi0wLjI0LXVidW50dTE4LjA0LXB5MzctY3VkYTExLWdwdTozDQogICAgY29tbWFuZDogZWNobyAke3tpbnB1dHMuaW1wb3J0ZWRfZGF0YX19DQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "BcbvtCoJcf7XDgqiLMcfuQ==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC2053494\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "w58LlPKryNA=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test_unknown_keys.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "327", - "Content-MD5": "XAlWvo9uYWNdzgeTxq/pGA==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpuYW1lOiAidGVzdDEiDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCmNvbXB1dGU6ICJ0ZXN0MSINCmlucHV0czoNCiAgdHlwZTogYXp1cmVzcWxkYg0Kb3V0cHV0czoNCnNvdXJjZToNCiAgdHlwZTogYXp1cmVzcWxkYg0KICBjb25uZWN0aW9uOiBhenVyZW1sOm15X3VzZXJuYW1lX3Bhc3N3b3JkDQogIHF1ZXJ5OiBzZWxlY3QgKiBmcm9tIFJFR0lPTg0Kb3V0cHV0Og0KICB0eXBlOiBtbHRhYmxlDQogIHBhdGg6IGF6dXJlbWw6Ly9kYXRhc3RvcmVzL3dvcmtzcGFjZWJsb2JzdG9yZS9wYXRocy9vdXRwdXRfZGlyL2F6dXJlc3FsLw0K", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "XAlWvo9uYWNdzgeTxq/pGA==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC205D0C1\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "HsNltKm1ano=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_job_test_snowflake.yml", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "293", - "Content-MD5": "NlpDeSZq9PhZhSAmXYJW4A==", - "Content-Type": "application/octet-stream", - "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-version": "2020-10-02" - }, - "RequestBody": "dHlwZTogaW1wb3J0DQpuYW1lOiAidGVzdDEiDQpkZXNjcmlwdGlvbjogInRlc3RfZGVzY3JpcHRpb24iDQpkaXNwbGF5X25hbWU6ICJ0ZXN0X2Rpc3BsYXlfbmFtZSINCnNvdXJjZToNCiAgdHlwZTogc25vd2ZsYWtlDQogIGNvbm5lY3Rpb246IGF6dXJlbWw6bXlfdXNlcm5hbWVfcGFzc3dvcmQNCiAgcXVlcnk6IHNlbGVjdCAqIGZyb20gUkVHSU9ODQpvdXRwdXQ6DQogIHR5cGU6IG1sdGFibGUNCiAgcGF0aDogYXp1cmVtbDovL2RhdGFzdG9yZXMvd29ya3NwYWNlYmxvYnN0b3JlL3BhdGhzL291dHB1dF9kaXIvDQo=", - "StatusCode": 201, - "ResponseHeaders": { - "Content-Length": "0", - "Content-MD5": "NlpDeSZq9PhZhSAmXYJW4A==", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC205D0C1\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-content-crc64": "Zhjj0B3IGgU=", - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "x-ms-creation-time": "Mon, 26 Sep 2022 03:46:54 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "e6497be9-bc7f-4813-8356-0608a382f93f", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job/import_component_test.yml?comp=metadata", - "RequestMethod": "PUT", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/import_job/import_component_test.yml", + "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.9.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)", - "x-ms-date": "Fri, 30 Sep 2022 00:50:23 GMT", - "x-ms-meta-name": "000000000000000000000", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-version": "2020-10-02" + "User-Agent": "azsdk-python-storage-blob/12.14.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Thu, 13 Oct 2022 01:29:19 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Content-Length": "0", - "Date": "Fri, 30 Sep 2022 00:50:23 GMT", - "ETag": "\u00220x8DAA27DC2102F88\u0022", - "Last-Modified": "Fri, 30 Sep 2022 00:50:23 GMT", + "Date": "Thu, 13 Oct 2022 01:29:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-10-02" + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6497be9-bc7f-4813-8356-0608a382f93f/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -786,7 +404,7 @@ "Connection": "keep-alive", "Content-Length": "299", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -796,31 +414,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/import_job" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "814", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:24 GMT", + "Date": "Thu, 13 Oct 2022 01:29:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-98c1bbfd0a7654714a9e29b2d541f498-3b40c07df0872552-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b787209acd978b56b47722d93040ed01-34da15972670bc51-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": "49e63ea3-0fe9-460f-aed1-c22ecc65a530", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "886a6e8c-a408-4429-a01c-b859ce413ad4", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005025Z:49e63ea3-0fe9-460f-aed1-c22ecc65a530", - "x-request-time": "1.487" + "x-ms-routing-request-id": "JAPANEAST:20221013T012920Z:886a6e8c-a408-4429-a01c-b859ce413ad4", + "x-request-time": "1.179" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6497be9-bc7f-4813-8356-0608a382f93f/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -832,14 +454,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sas3vrosykmdp4s.blob.core.windows.net/azureml-blobstore-86253a4f-a7a6-4008-8c86-ce9cf2978bc1/LocalUpload/00000000000000000000000000000000/import_job" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/import_job" }, "systemData": { - "createdAt": "2022-09-30T00:50:25.2442784\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-09-26T03:46:59.0878388\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-30T00:50:25.2442784\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-13T01:29:20.7522989\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } @@ -851,9 +473,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "662", + "Content-Length": "677", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -863,7 +485,7 @@ "isArchived": false, "componentSpec": { "command": "echo ${{inputs.imported_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6497be9-bc7f-4813-8356-0608a382f93f/versions/1", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu:3", "name": "azureml_anonymous", "tags": {}, @@ -884,26 +506,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1620", + "Content-Length": "1635", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:29 GMT", + "Date": "Thu, 13 Oct 2022 01:29:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-bfcd778c6a78516a7fb4db273db36eeb-69fe3f8b528747a7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6f3a16eeb92a6c40cba3ce9b616f02ed-b8996466a96c39e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d2dc0e5-5b10-4cea-a4bb-8d4c3db497c8", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "ab292809-1e2f-4f04-8738-e6fe94be9032", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005029Z:4d2dc0e5-5b10-4cea-a4bb-8d4c3db497c8", - "x-request-time": "3.922" + "x-ms-routing-request-id": "JAPANEAST:20221013T012924Z:ab292809-1e2f-4f04-8738-e6fe94be9032", + "x-request-time": "2.978" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2da7e8-c39f-4453-9e83-687621b5d87f", - "name": "6e2da7e8-c39f-4453-9e83-687621b5d87f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7035736e-48de-4657-8fe3-e6e1d11961c4", + "name": "7035736e-48de-4657-8fe3-e6e1d11961c4", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -913,7 +535,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "6e2da7e8-c39f-4453-9e83-687621b5d87f", + "version": "7035736e-48de-4657-8fe3-e6e1d11961c4", "display_name": "data_prep_step", "is_deterministic": "True", "type": "command", @@ -923,7 +545,7 @@ "optional": "False" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6497be9-bc7f-4813-8356-0608a382f93f/versions/1", "environment": "azureml://registries/azureml-dev/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -933,17 +555,17 @@ } }, "systemData": { - "createdAt": "2022-09-30T00:50:29.0343927\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-13T01:29:23.5859837\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User", - "lastModifiedAt": "2022-09-30T00:50:29.0343927\u002B00:00", - "lastModifiedBy": "Aditi Singhal", + "lastModifiedAt": "2022-10-13T01:29:23.5859837\u002B00:00", + "lastModifiedBy": "Xingzhi Zhang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -951,7 +573,7 @@ "Connection": "keep-alive", "Content-Length": "1939", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -993,7 +615,7 @@ }, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6030bf5-a565-4fef-ba5d-94ee4f14c216" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -1014,7 +636,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2da7e8-c39f-4453-9e83-687621b5d87f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7035736e-48de-4657-8fe3-e6e1d11961c4" } }, "outputs": {}, @@ -1026,22 +648,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4169", + "Content-Length": "4215", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:36 GMT", + "Date": "Thu, 13 Oct 2022 01:29:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-92a2781cf59c7770b97d6fd0fdec3cd4-71d68dd52fde1b61-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8624a16bb399389325d5702736ee48e0-1728beeca55801f8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db741e3e-675d-4b31-b4ec-c02ac98b917b", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "469532c7-5483-405f-8c73-3368f81bf7bf", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005036Z:db741e3e-675d-4b31-b4ec-c02ac98b917b", - "x-request-time": "5.296" + "x-ms-routing-request-id": "JAPANEAST:20221013T012933Z:469532c7-5483-405f-8c73-3368f81bf7bf", + "x-request-time": "3.989" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1072,7 +694,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1080,7 +703,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1120,7 +744,7 @@ }, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6030bf5-a565-4fef-ba5d-94ee4f14c216" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -1141,7 +765,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2da7e8-c39f-4453-9e83-687621b5d87f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7035736e-48de-4657-8fe3-e6e1d11961c4" } }, "inputs": {}, @@ -1149,20 +773,20 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-30T00:50:35.9667921\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-13T01:29:33.3523566\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1170,11 +794,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:37 GMT", + "Date": "Thu, 13 Oct 2022 01:29:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d44e8a4a1a452e6f003142b44a2f1ff0-5f6f792ff8691736-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5116680d1bd1ec9196919a4b45a9405a-6e4a252cbb6b29d0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -1183,11 +807,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12e8add0-e893-46ce-bcd8-b40d168ce97f", - "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-correlation-request-id": "38703f3c-818e-49e5-ae8c-8be491fbc205", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005037Z:12e8add0-e893-46ce-bcd8-b40d168ce97f", - "x-request-time": "0.162" + "x-ms-routing-request-id": "JAPANEAST:20221013T012936Z:38703f3c-818e-49e5-ae8c-8be491fbc205", + "x-request-time": "0.051" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1218,7 +842,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1226,7 +851,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1266,7 +892,7 @@ }, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6030bf5-a565-4fef-ba5d-94ee4f14c216" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -1287,7 +913,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2da7e8-c39f-4453-9e83-687621b5d87f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7035736e-48de-4657-8fe3-e6e1d11961c4" } }, "inputs": {}, @@ -1295,21 +921,21 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-30T00:50:35.9667921\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-13T01:29:33.3523566\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000/cancel?api-version=2022-10-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -1317,31 +943,31 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:39 GMT", + "Date": "Thu, 13 Oct 2022 01:29:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "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-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "e71fe698-45a1-4f97-af50-19a2652656ee", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "1e8bb714-5162-4d43-aa70-35c7e9203fd6", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005040Z:e71fe698-45a1-4f97-af50-19a2652656ee", - "x-request-time": "1.007" + "x-ms-routing-request-id": "JAPANEAST:20221013T012939Z:1e8bb714-5162-4d43-aa70-35c7e9203fd6", + "x-request-time": "1.344" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -1349,60 +975,60 @@ "Cache-Control": "no-cache", "Content-Length": "2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:50:39 GMT", + "Date": "Thu, 13 Oct 2022 01:29:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "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": "56cc14a7-331e-42da-abfa-5dd8f2393217", - "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-correlation-request-id": "4a5c8e4a-b998-484b-8bf3-a0297f307604", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005040Z:56cc14a7-331e-42da-abfa-5dd8f2393217", - "x-request-time": "0.028" + "x-ms-routing-request-id": "JAPANEAST:20221013T012939Z:4a5c8e4a-b998-484b-8bf3-a0297f307604", + "x-request-time": "0.070" }, "ResponseBody": {} }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:86253a4f-a7a6-4008-8c86-ce9cf2978bc1:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 30 Sep 2022 00:51:09 GMT", + "Date": "Thu, 13 Oct 2022 01:30:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-347fd4a414a6ffe9195e6564ca28ff56-53974b1cd7910a13-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1da0fd3b53efa42992da9b38ed1f007c-029cbadfff351342-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cccb348d-5f00-4e8a-aa24-f4cf184ad26d", - "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-correlation-request-id": "477bce2e-f592-4f63-8032-2e60929f61c9", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005110Z:cccb348d-5f00-4e8a-aa24-f4cf184ad26d", - "x-request-time": "0.027" + "x-ms-routing-request-id": "JAPANEAST:20221013T013010Z:477bce2e-f592-4f63-8032-2e60929f61c9", + "x-request-time": "0.037" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-10-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)" + "User-Agent": "azure-ai-ml/1.1.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1410,11 +1036,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 30 Sep 2022 00:51:09 GMT", + "Date": "Thu, 13 Oct 2022 01:30:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d5001a46591708a868928ab5a1b588f1-f53b0b3d95f2886d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-114e94e09c620d1209a2a2e7a1e8bccd-93c2e014e1729d99-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -1423,11 +1049,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "975ada8a-7730-4b5e-95e4-4f29c1ce1cc7", - "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-correlation-request-id": "3886802e-4c41-417b-bde7-5367ff91c28d", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTUS2:20220930T005110Z:975ada8a-7730-4b5e-95e4-4f29c1ce1cc7", - "x-request-time": "0.056" + "x-ms-routing-request-id": "JAPANEAST:20221013T013010Z:3886802e-4c41-417b-bde7-5367ff91c28d", + "x-request-time": "0.058" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1458,7 +1084,8 @@ "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null }, "Studio": { "jobServiceType": "Studio", @@ -1466,7 +1093,8 @@ "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, - "properties": null + "properties": null, + "nodes": null } }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1506,7 +1134,7 @@ }, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6030bf5-a565-4fef-ba5d-94ee4f14c216" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -1527,7 +1155,7 @@ "outputs": {}, "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2da7e8-c39f-4453-9e83-687621b5d87f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7035736e-48de-4657-8fe3-e6e1d11961c4" } }, "inputs": {}, @@ -1535,8 +1163,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-30T00:50:35.9667921\u002B00:00", - "createdBy": "Aditi Singhal", + "createdAt": "2022-10-13T01:29:33.3523566\u002B00:00", + "createdBy": "Xingzhi Zhang", "createdByType": "User" } }