diff --git a/sdk/ml/azure-ai-ml/CHANGELOG.md b/sdk/ml/azure-ai-ml/CHANGELOG.md index c93ab8002269..8992854469c2 100644 --- a/sdk/ml/azure-ai-ml/CHANGELOG.md +++ b/sdk/ml/azure-ai-ml/CHANGELOG.md @@ -27,6 +27,8 @@ - Added support for modifying SSH key values after creation on Compute Resources. - Added WorkspaceConnection types `s3`, `snowflake`, `azure_sql_db`, `azure_synapse_analytics`, `azure_my_sql_db`, `azure_postgres_db` - Added WorkspaceConnection auth type `access_key` for `s3` +- Added DataImport class and DataOperations.import_data. +- Added DataOperations.list_materialization_status - list status of data import jobs that create asset versions via asset name. ### Bugs Fixed diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/credentials.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/credentials.py index 844088609df1..96b3fad75727 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/credentials.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/credentials.py @@ -101,7 +101,7 @@ def make(self, data: Dict[str, str], **kwargs) -> ServicePrincipalConfiguration: return ServicePrincipalConfiguration(**data) -class AccessKeyCredentialsSchema(metaclass=PatchedSchemaMeta): +class AccessKeyConfigurationSchema(metaclass=PatchedSchemaMeta): type = StringTransformedEnum( allowed_values=ConnectionAuthType.ACCESS_KEY, casing_transform=camel_to_snake, diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/workspace_connection.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/workspace_connection.py index 5bfcb3ee7f46..8de1dfdcc61b 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/workspace_connection.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/workspace/connections/workspace_connection.py @@ -16,7 +16,7 @@ SasTokenConfigurationSchema, ServicePrincipalConfigurationSchema, UsernamePasswordConfigurationSchema, - AccessKeyCredentialsSchema, + AccessKeyConfigurationSchema, ) from azure.ai.ml._utils.utils import camel_to_snake from azure.ai.ml.constants._common import AzureMLResourceType @@ -50,7 +50,7 @@ class WorkspaceConnectionSchema(PathAwareSchema): NestedField(UsernamePasswordConfigurationSchema), NestedField(ManagedIdentityConfigurationSchema), NestedField(ServicePrincipalConfigurationSchema), - NestedField(AccessKeyCredentialsSchema), + NestedField(AccessKeyConfigurationSchema), ] ) metadata = fields.Dict(required=False, allow_none=True) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/__init__.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/__init__.py index adbc379e2a25..94661e88e0ee 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/__init__.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/__init__.py @@ -48,6 +48,7 @@ ServicePrincipalConfiguration, UserIdentityConfiguration, UsernamePasswordConfiguration, + AccessKeyConfiguration, ) from ._datastore.adls_gen1 import AzureDataLakeGen1Datastore from ._datastore.azure_storage import AzureBlobDatastore, AzureDataLakeGen2Datastore, AzureFileDatastore @@ -319,4 +320,5 @@ "ContainerRegistryCredential", "EndpointAuthKeys", "EndpointAuthToken", + "AccessKeyConfiguration", ] diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_assets/_artifacts/data.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_assets/_artifacts/data.py index f5ae03e9f09e..423d1e61a4b6 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_assets/_artifacts/data.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_assets/_artifacts/data.py @@ -208,6 +208,15 @@ def _from_rest_object(cls, data_rest_object: DataVersionBase) -> "Data": ) return data + @classmethod + def _resolve_cls_and_type(cls, data, params_override): + from azure.ai.ml.entities._data_import.data_import import DataImport + + if "source" in data: + return DataImport, None + + return cls, None + def _update_path(self, asset_artifact: ArtifactStorageInfo) -> None: regex = r"datastores\/(.+)" # datastore_arm_id is null for registry scenario, so capture the full_storage_path diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_data_import/data_import.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_data_import/data_import.py index 8ff4d80833d9..feb9898a7f1e 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_data_import/data_import.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_data_import/data_import.py @@ -67,7 +67,7 @@ def _load( yaml_path: Optional[Union[PathLike, str]] = None, params_override: Optional[list] = None, **kwargs, - ) -> Union["Data", "DataImport"]: + ) -> "DataImport": data = data or {} params_override = params_override or [] context = { @@ -75,10 +75,9 @@ def _load( PARAMS_OVERRIDE_KEY: params_override, } - if "source" in data: - return DataImport._load_from_dict(yaml_data=data, context=context, **kwargs) + data_import = DataImport._load_from_dict(yaml_data=data, context=context, **kwargs) - return Data._load_from_dict(yaml_data=data, context=context, **kwargs) + return data_import @classmethod def _load_from_dict(cls, yaml_data: Dict, context: Dict, **kwargs) -> "DataImport": diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_load_functions.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_load_functions.py index c7818241097c..649f77b5c7fe 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_load_functions.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_load_functions.py @@ -20,7 +20,6 @@ from azure.ai.ml.entities._component.parallel_component import ParallelComponent from azure.ai.ml.entities._component.pipeline_component import PipelineComponent from azure.ai.ml.entities._compute.compute import Compute -from azure.ai.ml.entities._data_import.data_import import DataImport from azure.ai.ml.entities._datastore.datastore import Datastore from azure.ai.ml.entities._deployment.batch_deployment import BatchDeployment from azure.ai.ml.entities._deployment.online_deployment import OnlineDeployment @@ -430,7 +429,7 @@ def load_data( *, relative_origin: Optional[str] = None, **kwargs, -) -> Union[Data, DataImport]: +) -> Data: """Construct a data object from yaml file. :param source: The local yaml source of a data object. Must be either a @@ -451,9 +450,9 @@ def load_data( :raises ~azure.ai.ml.exceptions.ValidationException: Raised if Data cannot be successfully validated. Details will be provided in the error message. :return: Constructed Data or DataImport object. - :rtype: Union[Data, DataImport] + :rtype: Data """ - return load_common(DataImport, source, relative_origin, **kwargs) + return load_common(Data, source, relative_origin, **kwargs) def load_environment( diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_data_operations.py b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_data_operations.py index 57eca28f3889..4e5aca6a47d0 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_data_operations.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_data_operations.py @@ -11,7 +11,7 @@ from marshmallow.exceptions import ValidationError as SchemaValidationError from azure.ai.ml._utils._experimental import experimental -from azure.ai.ml.entities import Job, PipelineJob, PipelineJobSettings +from azure.ai.ml.entities import PipelineJob, PipelineJobSettings from azure.ai.ml.data_transfer import import_data as import_data_func from azure.ai.ml.entities._inputs_outputs import Output from azure.ai.ml.entities._inputs_outputs.external_data import Database @@ -359,13 +359,13 @@ def create_or_update(self, data: Data) -> Data: @monitor_with_activity(logger, "Data.ImportData", ActivityType.PUBLICAPI) @experimental - def import_data(self, data_import: DataImport) -> Job: + def import_data(self, data_import: DataImport, **kwargs) -> PipelineJob: """Returns the data import job that is creating the data asset. :param data_import: DataImport object. :type data_import: azure.ai.ml.entities.DataImport :return: data import job object. - :rtype: ~azure.ai.ml.entities.Job + :rtype: ~azure.ai.ml.entities.PipelineJob """ experiment_name = "data_import_" + data_import.name @@ -394,16 +394,17 @@ def import_data(self, data_import: DataImport) -> Job: jobs={experiment_name: import_job}, ) import_pipeline.properties["azureml.materializationAssetName"] = data_import.name - return self._job_operation.create_or_update(job=import_pipeline, skip_validation=True) + return self._job_operation.create_or_update(job=import_pipeline, skip_validation=True, **kwargs) - @monitor_with_activity(logger, "Data.ShowMaterializationStatus", ActivityType.PUBLICAPI) + @monitor_with_activity(logger, "Data.ListMaterializationStatus", ActivityType.PUBLICAPI) @experimental - def show_materialization_status( + def list_materialization_status( self, name: str, *, list_view_type: ListViewType = ListViewType.ACTIVE_ONLY, - ) -> Iterable[Job]: + **kwargs, + ) -> Iterable[PipelineJob]: """List materialization jobs of the asset. :param name: name of asset being created by the materialization jobs. @@ -411,11 +412,10 @@ def show_materialization_status( :param list_view_type: View type for including/excluding (for example) archived jobs. Default: ACTIVE_ONLY. :type list_view_type: Optional[ListViewType] :return: An iterator like instance of Job objects. - :rtype: ~azure.core.paging.ItemPaged[Job] + :rtype: ~azure.core.paging.ItemPaged[PipelineJob] """ - # TODO: Add back 'asset_name=name' filter once client switches to mfe 2023-02-01-preview and above - return self._job_operation.list(job_type="Pipeline", asset_name=name, list_view_type=list_view_type) + return self._job_operation.list(job_type="Pipeline", asset_name=name, list_view_type=list_view_type, **kwargs) @monitor_with_activity(logger, "Data.Validate", ActivityType.INTERNALCALL) def _validate(self, data: Data) -> Union[List[str], None]: diff --git a/sdk/ml/azure-ai-ml/tests/recordings/data_import/e2etests/test_data_import.pyTestDataImporttest_data_import.json b/sdk/ml/azure-ai-ml/tests/recordings/data_import/e2etests/test_data_import.pyTestDataImporttest_data_import.json index aaca25f4a661..1d9e7f740b35 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/data_import/e2etests/test_data_import.pyTestDataImporttest_data_import.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/data_import/e2etests/test_data_import.pyTestDataImporttest_data_import.json @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "1083", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 az00000-python-mgmt-machinelearningservices/0.1.0 Python/3.8.13 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -55,22 +55,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2435", + "Content-Length": "2461", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 03 Mar 2023 04:59:52 GMT", + "Date": "Wed, 15 Mar 2023 19:20:17 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=2023-02-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e3e1b1c5b1ea6070b93160a94eadaeee-411f41200f1b9428-01\u0022", + "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c82ed271972e0ae80aea387985bd0994-31af1a355d305790-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59cab1de-7e2f-434d-953c-268c681a130e", + "x-ms-correlation-request-id": "88fe5c87-cb15-4495-bada-9bd1021811b4", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "JAPANEAST:20230303T045952Z:59cab1de-7e2f-434d-953c-268c681a130e", - "x-request-time": "2.205" + "x-ms-routing-request-id": "WESTUS:20230315T192018Z:88fe5c87-cb15-4495-bada-9bd1021811b4", + "x-request-time": "4.314" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -86,7 +86,7 @@ "runSource": "MFE", "runType": "HTTP", "azureml.parameters": "{}", - "azureml.continue_on_step_failure": "False", + "azureml.continue_on_step_failure": "True", "azureml.continue_on_failed_optional_input": "True", "azureml.enforceRerun": "True", "azureml.defaultDataStoreName": "workspaceblobstore", @@ -99,7 +99,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.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, @@ -152,7 +152,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2023-03-03T04:59:52.1317137\u002B00:00", + "createdAt": "2023-03-15T19:20:17.7591391\u002B00:00", "createdBy": "Firstname Lastname", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_cr_msi.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_cr_msi.json index 86fbb3862e6d..f44ef9cd132a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_cr_msi.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_cr_msi.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "186", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -27,11 +27,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:50 GMT", + "Date": "Wed, 15 Mar 2023 15:02:35 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f4ddf48f772f89e63c428bdcc10ad11c-4d37b687ab12f255-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1c5598dff2cc7675502fb8fd38fa86c4-efb589488b695111-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -40,17 +40,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1e1df78-9ba4-4a2b-9855-1f359de0bc47", + "x-ms-correlation-request-id": "3a43e818-b59f-4a06-b084-264eadbdc25e", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190251Z:c1e1df78-9ba4-4a2b-9855-1f359de0bc47", - "x-request-time": "0.185" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150235Z:3a43e818-b59f-4a06-b084-264eadbdc25e", + "x-request-time": "0.819" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567", - "name": "e2etest_wps_conn_test_45903913567", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441", + "name": "e2etest_wps_conn_test_191391113441", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "ManagedIdentity", @@ -64,7 +64,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -72,7 +72,7 @@ "Connection": "keep-alive", "Content-Length": "200", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -90,11 +90,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:51 GMT", + "Date": "Wed, 15 Mar 2023 15:02:36 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-bf102b442727d69f1b07c122a57b1a93-653b8157acf7fb40-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-aaf95ec09f0b328a5d801fa33ebc2b91-6beb03d29b5bdbc8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -103,17 +103,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97fa7a21-2cd4-49a6-a12e-72fdea31e8d9", + "x-ms-correlation-request-id": "f95934d2-c4c4-4a1b-a98c-9cc77d64a50a", "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190252Z:97fa7a21-2cd4-49a6-a12e-72fdea31e8d9", - "x-request-time": "0.176" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150236Z:f95934d2-c4c4-4a1b-a98c-9cc77d64a50a", + "x-request-time": "0.441" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567", - "name": "e2etest_wps_conn_test_45903913567", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441", + "name": "e2etest_wps_conn_test_191391113441", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "ManagedIdentity", @@ -127,13 +127,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -141,11 +141,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:51 GMT", + "Date": "Wed, 15 Mar 2023 15:02:36 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4261e7f7207ab46864cd370224c834ad-6041e063b7b5b40a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b981d693fc8056b0bcd70f26624a74a2-8d5c23d063b57bf5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -154,17 +154,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f63e9e6-b1ae-4f61-a39b-242fad357c26", + "x-ms-correlation-request-id": "fc040f00-2117-4f61-81a9-85a1a00dbcb1", "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190252Z:5f63e9e6-b1ae-4f61-a39b-242fad357c26", - "x-request-time": "0.018" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150236Z:fc040f00-2117-4f61-81a9-85a1a00dbcb1", + "x-request-time": "0.025" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567", - "name": "e2etest_wps_conn_test_45903913567", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441", + "name": "e2etest_wps_conn_test_191391113441", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "ManagedIdentity", @@ -178,52 +178,52 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Sat, 11 Mar 2023 19:02:51 GMT", + "Date": "Wed, 15 Mar 2023 15:02:37 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f985be103e38d8aafde48a0e67a22c00-3c1b571c5cbadea2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c2b24abe6ccf6cb4566506e28ed846b2-d7515f00ed944c2b-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": "20c06ce1-27ba-4ef6-93a0-f73c7c4a3cde", + "x-ms-correlation-request-id": "589371fb-cb9e-41a8-88e6-efc0e290048a", "x-ms-ratelimit-remaining-subscription-deletes": "14997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190252Z:20c06ce1-27ba-4ef6-93a0-f73c7c4a3cde", - "x-request-time": "0.162" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150237Z:589371fb-cb9e-41a8-88e6-efc0e290048a", + "x-request-time": "0.201" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_45903913567?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_191391113441?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "687", + "Content-Length": "688", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:51 GMT", + "Date": "Wed, 15 Mar 2023 15:02:37 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", @@ -231,17 +231,17 @@ "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b00695d3-5d40-4249-8ca9-3555b2148912", + "x-ms-correlation-request-id": "e39a0ba6-6e2a-4b38-bbb9-b65cdaffc728", "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190252Z:b00695d3-5d40-4249-8ca9-3555b2148912", - "x-request-time": "0.038" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150237Z:e39a0ba6-6e2a-4b38-bbb9-b65cdaffc728", + "x-request-time": "0.022" }, "ResponseBody": { "error": { "code": "UserError", "severity": null, - "message": "Connection e2etest_wps_conn_test_45903913567 can\u0027t be found in this workspace", + "message": "Connection e2etest_wps_conn_test_191391113441 can\u0027t be found in this workspace", "messageFormat": null, "messageParameters": null, "referenceCode": null, @@ -256,12 +256,12 @@ "additionalInfo": null }, "correlation": { - "operation": "a52c386f1759a1a2305771b022bfb4c9", - "request": "1262da9e0a548cad" + "operation": "041b52ce156bd1c2f5ee8f3e4618e8d9", + "request": "ef9aa2bd248bf93b" }, "environment": "master", "location": "westus2", - "time": "2023-03-11T19:02:52.6939782\u002B00:00", + "time": "2023-03-15T15:02:37.3686407\u002B00:00", "componentName": "account-rp" } }, @@ -272,7 +272,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -280,21 +280,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:52 GMT", + "Date": "Wed, 15 Mar 2023 15:02:37 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-9a88d3c474d4bf2f5c6ccea2df4f7005-9e17d02d5b682b8f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d4899c025bdd6166232d07abde972693-da935df101e765bd-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": "6ae80f78-92c4-4428-af61-726dce4546aa", + "x-ms-correlation-request-id": "6373908f-65bd-4d3f-be65-3faa3e141431", "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190252Z:6ae80f78-92c4-4428-af61-726dce4546aa", - "x-request-time": "0.016" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150237Z:6373908f-65bd-4d3f-be65-3faa3e141431", + "x-request-time": "0.017" }, "ResponseBody": { "value": [] @@ -302,6 +302,6 @@ } ], "Variables": { - "wps_connection_name": "test_45903913567" + "wps_connection_name": "test_191391113441" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_pat.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_pat.json index 6c2758cf99cf..d887ab0391d8 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_pat.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_pat.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "130", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -26,11 +26,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:47 GMT", + "Date": "Wed, 15 Mar 2023 15:02:31 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7278d7240454898de0f35b6a1706212a-d651825218a0faa8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-27a9d2667827889b6f6be8525ec6a6a1-201114e18b1940c2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -39,17 +39,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bde653d2-6b8a-49e4-8021-493ef5c3a1d2", + "x-ms-correlation-request-id": "e04a5ce4-de5e-40e6-b795-5176aa82bc1e", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190247Z:bde653d2-6b8a-49e4-8021-493ef5c3a1d2", - "x-request-time": "0.505" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150231Z:e04a5ce4-de5e-40e6-b795-5176aa82bc1e", + "x-request-time": "1.183" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010", - "name": "e2etest_wps_conn_test_190939393010", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930", + "name": "e2etest_wps_conn_test_805699089930", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "PAT", @@ -63,7 +63,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -71,7 +71,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -88,11 +88,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:48 GMT", + "Date": "Wed, 15 Mar 2023 15:02:32 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e076d5dff9fe24931bd9109cee017edd-b7679b3a71d1a3cb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d2b6d8f005d8f174a17690e8f6e1af3c-4871d393ccab7c52-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -101,17 +101,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10072836-2ead-4ef3-a9d6-e8f55997ea7b", + "x-ms-correlation-request-id": "3a945651-7e8c-4af0-a22c-7dd790b29dc9", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190248Z:10072836-2ead-4ef3-a9d6-e8f55997ea7b", - "x-request-time": "0.608" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150232Z:3a945651-7e8c-4af0-a22c-7dd790b29dc9", + "x-request-time": "0.269" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010", - "name": "e2etest_wps_conn_test_190939393010", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930", + "name": "e2etest_wps_conn_test_805699089930", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "PAT", @@ -125,13 +125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -139,11 +139,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:48 GMT", + "Date": "Wed, 15 Mar 2023 15:02:32 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-ad487ff6bab84ae06d073c48fb05e78a-89486146fbd2c542-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-717832d323093d8d58cfdffb56f2ca1f-5db3e6f295c0d0ae-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -152,17 +152,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bd9fd17-0c39-4819-b869-8573a8bca8de", + "x-ms-correlation-request-id": "e914f192-45e7-46d9-8642-39bdd484cbf3", "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190248Z:7bd9fd17-0c39-4819-b869-8573a8bca8de", - "x-request-time": "0.019" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150232Z:e914f192-45e7-46d9-8642-39bdd484cbf3", + "x-request-time": "0.021" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010", - "name": "e2etest_wps_conn_test_190939393010", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930", + "name": "e2etest_wps_conn_test_805699089930", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "PAT", @@ -176,44 +176,44 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Sat, 11 Mar 2023 19:02:48 GMT", + "Date": "Wed, 15 Mar 2023 15:02:33 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-73bceace45c20fa4468c75c140047021-0a48772e28aa082f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a568a9fb1f9ea09acfdb3782047d15f1-6299cd56bb99fbad-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": "eb0baaee-bcf4-4b09-85c9-9a71054c4e66", + "x-ms-correlation-request-id": "47a0ea0f-97cc-4725-83f8-65f679f99f97", "x-ms-ratelimit-remaining-subscription-deletes": "14998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190249Z:eb0baaee-bcf4-4b09-85c9-9a71054c4e66", - "x-request-time": "0.399" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150233Z:47a0ea0f-97cc-4725-83f8-65f679f99f97", + "x-request-time": "0.287" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_190939393010?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_805699089930?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -221,7 +221,7 @@ "Cache-Control": "no-cache", "Content-Length": "688", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:49 GMT", + "Date": "Wed, 15 Mar 2023 15:02:33 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", @@ -229,17 +229,17 @@ "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10fac74b-c2c9-496f-8b4e-9170dbf76939", + "x-ms-correlation-request-id": "160d1de4-577d-45cd-ad4a-73d6bd6d49a8", "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190249Z:10fac74b-c2c9-496f-8b4e-9170dbf76939", - "x-request-time": "0.041" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150233Z:160d1de4-577d-45cd-ad4a-73d6bd6d49a8", + "x-request-time": "0.038" }, "ResponseBody": { "error": { "code": "UserError", "severity": null, - "message": "Connection e2etest_wps_conn_test_190939393010 can\u0027t be found in this workspace", + "message": "Connection e2etest_wps_conn_test_805699089930 can\u0027t be found in this workspace", "messageFormat": null, "messageParameters": null, "referenceCode": null, @@ -254,12 +254,12 @@ "additionalInfo": null }, "correlation": { - "operation": "481f6463845e4e5cfbc334d3264ff9de", - "request": "0cc1e8bbcd693b8d" + "operation": "6adb629774ff8e25f4a02e8117c7b171", + "request": "a189b3547e467941" }, "environment": "master", "location": "westus2", - "time": "2023-03-11T19:02:49.7889014\u002B00:00", + "time": "2023-03-15T15:02:33.2675796\u002B00:00", "componentName": "account-rp" } }, @@ -270,7 +270,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -278,21 +278,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:49 GMT", + "Date": "Wed, 15 Mar 2023 15:02:33 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-caa71bc38bb7dfe8dbf8678f668e9dee-1c163a626b409689-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-033a12d09416a8b4d02d5d22b2108656-f89e28b5eb4efe99-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": "1909724e-3716-40ae-9d96-54e59df9dc4b", + "x-ms-correlation-request-id": "d3da2013-3bbb-4f97-8c14-2a4f1f68e758", "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190249Z:1909724e-3716-40ae-9d96-54e59df9dc4b", - "x-request-time": "0.010" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150233Z:d3da2013-3bbb-4f97-8c14-2a4f1f68e758", + "x-request-time": "0.016" }, "ResponseBody": { "value": [] @@ -300,6 +300,6 @@ } ], "Variables": { - "wps_connection_name": "test_190939393010" + "wps_connection_name": "test_805699089930" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_user_pwd.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_user_pwd.json index 3f8d2e276c82..ef056412566e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_user_pwd.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_git_user_pwd.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "165", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -27,11 +27,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:53 GMT", + "Date": "Wed, 15 Mar 2023 15:02:39 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-7ee03306b97b6004dd8edd130d56d98c-d506fc2f0ea8955e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b52b9162817420c838213b9387b3d071-50976d596bddd1f0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -40,17 +40,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec743d11-f7dd-48c6-a504-f2bd92ff54dd", + "x-ms-correlation-request-id": "02b91227-a70c-49f0-bd83-f2ddb888fa43", "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190254Z:ec743d11-f7dd-48c6-a504-f2bd92ff54dd", - "x-request-time": "0.168" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150239Z:02b91227-a70c-49f0-bd83-f2ddb888fa43", + "x-request-time": "0.206" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510", - "name": "e2etest_wps_conn_test_530885004510", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499", + "name": "e2etest_wps_conn_test_579060790499", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "UsernamePassword", @@ -64,7 +64,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -72,7 +72,7 @@ "Connection": "keep-alive", "Content-Length": "171", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -90,11 +90,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:54 GMT", + "Date": "Wed, 15 Mar 2023 15:02:39 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-0e0fc5b7fd9f457fed0d6bcb19fca704-25953ffdab762e44-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-558ba0d9b94113f35bccf94dee76a0b7-d70661644ad9e24d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -103,17 +103,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18a5911d-3ce8-4130-8670-d21571e1efca", + "x-ms-correlation-request-id": "62280dd7-3818-4451-8e13-76fe9d858b86", "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190255Z:18a5911d-3ce8-4130-8670-d21571e1efca", - "x-request-time": "0.203" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150239Z:62280dd7-3818-4451-8e13-76fe9d858b86", + "x-request-time": "0.246" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510", - "name": "e2etest_wps_conn_test_530885004510", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499", + "name": "e2etest_wps_conn_test_579060790499", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "UsernamePassword", @@ -127,13 +127,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -141,11 +141,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:54 GMT", + "Date": "Wed, 15 Mar 2023 15:02:39 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-52cbe4bd551444893ae96e96489daf70-062ee30dce3bce51-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7a765df4bc7d28c896c277165939c046-816cf888845a4059-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -154,17 +154,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2206bf1c-3768-4563-b186-29daa8efcc37", + "x-ms-correlation-request-id": "07702c88-8d6e-453b-8ae3-6aaad2b8239c", "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190255Z:2206bf1c-3768-4563-b186-29daa8efcc37", - "x-request-time": "0.019" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150239Z:07702c88-8d6e-453b-8ae3-6aaad2b8239c", + "x-request-time": "0.015" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510", - "name": "e2etest_wps_conn_test_530885004510", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499", + "name": "e2etest_wps_conn_test_579060790499", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "UsernamePassword", @@ -178,44 +178,44 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Sat, 11 Mar 2023 19:02:55 GMT", + "Date": "Wed, 15 Mar 2023 15:02:40 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d6d08c803e4a545d7afa4a66b0c8c142-0e1ae680363b7edf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4da230e80dbba88d32c14e0aa2bbb12c-e8dc20d8d7dc9c3f-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": "80b310ba-8b94-4b22-8f98-e3e7f4604224", + "x-ms-correlation-request-id": "c0f6b01a-621e-4026-b4b4-ba5f8ae97614", "x-ms-ratelimit-remaining-subscription-deletes": "14996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190255Z:80b310ba-8b94-4b22-8f98-e3e7f4604224", - "x-request-time": "0.174" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150240Z:c0f6b01a-621e-4026-b4b4-ba5f8ae97614", + "x-request-time": "0.398" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_530885004510?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_579060790499?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -223,7 +223,7 @@ "Cache-Control": "no-cache", "Content-Length": "688", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:55 GMT", + "Date": "Wed, 15 Mar 2023 15:02:40 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", @@ -231,17 +231,17 @@ "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a54d235-4acc-44d2-beff-c46384e0a23d", + "x-ms-correlation-request-id": "2fe55822-6d70-43b2-a791-8137559445ca", "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190256Z:7a54d235-4acc-44d2-beff-c46384e0a23d", - "x-request-time": "0.098" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150240Z:2fe55822-6d70-43b2-a791-8137559445ca", + "x-request-time": "0.050" }, "ResponseBody": { "error": { "code": "UserError", "severity": null, - "message": "Connection e2etest_wps_conn_test_530885004510 can\u0027t be found in this workspace", + "message": "Connection e2etest_wps_conn_test_579060790499 can\u0027t be found in this workspace", "messageFormat": null, "messageParameters": null, "referenceCode": null, @@ -256,12 +256,12 @@ "additionalInfo": null }, "correlation": { - "operation": "094a2bb8b263bdb096f39c21f88c7643", - "request": "f462bc2279ee1d5b" + "operation": "8530844a8513f1a1f8877780c3a21eb5", + "request": "011c2f6489a4977c" }, "environment": "master", "location": "westus2", - "time": "2023-03-11T19:02:56.2269729\u002B00:00", + "time": "2023-03-15T15:02:40.9168618\u002B00:00", "componentName": "account-rp" } }, @@ -272,7 +272,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -280,21 +280,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:55 GMT", + "Date": "Wed, 15 Mar 2023 15:02:40 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-e22e4798658917099167dc8780e8d49f-237d85b9b585cbdc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-69e703b7ecfe0841c7b3fdde62cc778e-bd2c353479bb8c26-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": "5c98e956-ddca-4851-bde8-9370f4caacfd", + "x-ms-correlation-request-id": "d2d9ebc2-b236-4694-983f-b51a208151e2", "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190256Z:5c98e956-ddca-4851-bde8-9370f4caacfd", - "x-request-time": "0.012" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150241Z:d2d9ebc2-b236-4694-983f-b51a208151e2", + "x-request-time": "0.021" }, "ResponseBody": { "value": [] @@ -302,6 +302,6 @@ } ], "Variables": { - "wps_connection_name": "test_530885004510" + "wps_connection_name": "test_579060790499" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_python_feed.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_python_feed.json index d24d2bc6e4da..45da0d181ac4 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_python_feed.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_python_feed.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "133", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -26,11 +26,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:42 GMT", + "Date": "Wed, 15 Mar 2023 15:02:25 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-dea4289f8a141c35b79cc897eaf61323-c81c3517d0f5b7fa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e270db35dedde59919229dfb70405089-b4eaaa5d33ba196d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -39,17 +39,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1a05dfa-550a-43ba-9eed-2a9460a20d70", + "x-ms-correlation-request-id": "0201d2c1-020d-4383-a0e0-8daeba9f2a76", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190243Z:e1a05dfa-550a-43ba-9eed-2a9460a20d70", - "x-request-time": "2.012" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150225Z:0201d2c1-020d-4383-a0e0-8daeba9f2a76", + "x-request-time": "2.639" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047", - "name": "e2etest_wps_conn_test_740020350047", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515", + "name": "e2etest_wps_conn_test_33231107515", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "PAT", @@ -63,7 +63,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -71,7 +71,7 @@ "Connection": "keep-alive", "Content-Length": "141", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -88,11 +88,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:43 GMT", + "Date": "Wed, 15 Mar 2023 15:02:27 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3ab7caa1c60b0cd2acabc27fee795742-765d3d67bb8717d8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-48d359933704336d366cec32de9c4b36-72fc4638e5c9cefa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -101,17 +101,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d3f09e8-2908-463e-a867-abdcf4cdecce", + "x-ms-correlation-request-id": "0561c64d-025b-4fcc-9ed7-b85d80a83809", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190243Z:8d3f09e8-2908-463e-a867-abdcf4cdecce", - "x-request-time": "0.200" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150227Z:0561c64d-025b-4fcc-9ed7-b85d80a83809", + "x-request-time": "0.921" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047", - "name": "e2etest_wps_conn_test_740020350047", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515", + "name": "e2etest_wps_conn_test_33231107515", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "PAT", @@ -125,13 +125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -139,11 +139,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:43 GMT", + "Date": "Wed, 15 Mar 2023 15:02:27 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-c99ebf7fe08c03eee1a54dbe6b3c2728-4b5448c20acba4fc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-64aadf7f39f85e6c2b0c8ed87d0da54f-ca0c74a543f04e27-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -152,17 +152,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75dd54c8-ec49-4fa0-b024-2beb3fa35734", + "x-ms-correlation-request-id": "7413b280-36ce-471b-9eee-2d8a1ca9a532", "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190243Z:75dd54c8-ec49-4fa0-b024-2beb3fa35734", - "x-request-time": "0.036" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150227Z:7413b280-36ce-471b-9eee-2d8a1ca9a532", + "x-request-time": "0.052" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047", - "name": "e2etest_wps_conn_test_740020350047", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515", + "name": "e2etest_wps_conn_test_33231107515", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "PAT", @@ -176,52 +176,52 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Sat, 11 Mar 2023 19:02:44 GMT", + "Date": "Wed, 15 Mar 2023 15:02:28 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-f7fa921eb63cca1ef7613faddf7d1686-1e0cc6c8de1287cf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-324e5469e0fc97ffdabda93c9715e806-7dbaf8544244db8d-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": "d189550c-d67e-41cf-9d84-df6b033a75df", + "x-ms-correlation-request-id": "5ae55ef7-c28f-4548-85a6-b7b7607f83aa", "x-ms-ratelimit-remaining-subscription-deletes": "14999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190245Z:d189550c-d67e-41cf-9d84-df6b033a75df", - "x-request-time": "1.156" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150228Z:5ae55ef7-c28f-4548-85a6-b7b7607f83aa", + "x-request-time": "0.871" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_740020350047?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_33231107515?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "688", + "Content-Length": "687", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:44 GMT", + "Date": "Wed, 15 Mar 2023 15:02:28 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", @@ -229,17 +229,17 @@ "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72e27fec-9daa-444c-822e-932d6808d740", + "x-ms-correlation-request-id": "ef43bc4c-774f-4672-9de6-2b97605fdd62", "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190245Z:72e27fec-9daa-444c-822e-932d6808d740", - "x-request-time": "0.027" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150228Z:ef43bc4c-774f-4672-9de6-2b97605fdd62", + "x-request-time": "0.043" }, "ResponseBody": { "error": { "code": "UserError", "severity": null, - "message": "Connection e2etest_wps_conn_test_740020350047 can\u0027t be found in this workspace", + "message": "Connection e2etest_wps_conn_test_33231107515 can\u0027t be found in this workspace", "messageFormat": null, "messageParameters": null, "referenceCode": null, @@ -254,12 +254,12 @@ "additionalInfo": null }, "correlation": { - "operation": "cde808c9dfc402854f03bf674eac135b", - "request": "9f95c6dc85b5cafa" + "operation": "a06f328a26f7887afd9b0bd97f023531", + "request": "97b758359f8d4019" }, "environment": "master", "location": "westus2", - "time": "2023-03-11T19:02:45.5399228\u002B00:00", + "time": "2023-03-15T15:02:28.7977571\u002B00:00", "componentName": "account-rp" } }, @@ -270,7 +270,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -278,11 +278,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:44 GMT", + "Date": "Wed, 15 Mar 2023 15:02:28 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-196ac0b6cf4ab122b3c108902eae8c6a-abe2a69fa12d0e59-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4203a604e702188047458b9029182294-006c8cd386336f6c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -291,11 +291,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "319847d6-89a3-47c5-b381-40b0f4328afe", + "x-ms-correlation-request-id": "174fc305-37d6-444e-8302-84ccaa688c3a", "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190245Z:319847d6-89a3-47c5-b381-40b0f4328afe", - "x-request-time": "0.023" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150228Z:174fc305-37d6-444e-8302-84ccaa688c3a", + "x-request-time": "0.019" }, "ResponseBody": { "value": [ @@ -352,6 +352,6 @@ } ], "Variables": { - "wps_connection_name": "test_740020350047" + "wps_connection_name": "test_33231107515" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_s3_access_key.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_s3_access_key.json index a0f9cdfd9758..7d4b1c7b3422 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_s3_access_key.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_s3_access_key.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "147", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -27,11 +27,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:03:00 GMT", + "Date": "Wed, 15 Mar 2023 15:02:46 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-db8553ea9630d676cd6f0c16251924a5-e3f57751b5fbb883-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0b391c600f8d7238e6f5da47f1d7922b-6e7060556a71ddd1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -40,17 +40,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae1eeec4-7d65-4d04-834c-de1f9777c763", + "x-ms-correlation-request-id": "ebf422a3-4444-40df-b6cb-1ffcee4a2cbb", "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190301Z:ae1eeec4-7d65-4d04-834c-de1f9777c763", - "x-request-time": "0.375" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150246Z:ebf422a3-4444-40df-b6cb-1ffcee4a2cbb", + "x-request-time": "0.222" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829", - "name": "e2etest_wps_conn_test_915486662829", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550", + "name": "e2etest_wps_conn_test_660365073550", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "AccessKey", @@ -64,7 +64,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -72,7 +72,7 @@ "Connection": "keep-alive", "Content-Length": "147", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -90,11 +90,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:03:01 GMT", + "Date": "Wed, 15 Mar 2023 15:02:46 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-2996d0041a97d6f30e17b423255abb48-7ea9a3d4fa5284e3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7b24de6f367d7bbf4a00ed3547b495b3-a2238ffd9bc20b13-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -103,17 +103,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74e1439b-bd00-4443-83f8-d7cc134bc8b7", + "x-ms-correlation-request-id": "9f9926a5-c03b-4dc4-a7a1-a51a0cffd582", "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190301Z:74e1439b-bd00-4443-83f8-d7cc134bc8b7", - "x-request-time": "0.225" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150246Z:9f9926a5-c03b-4dc4-a7a1-a51a0cffd582", + "x-request-time": "0.173" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829", - "name": "e2etest_wps_conn_test_915486662829", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550", + "name": "e2etest_wps_conn_test_660365073550", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "AccessKey", @@ -127,13 +127,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -141,11 +141,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:03:01 GMT", + "Date": "Wed, 15 Mar 2023 15:02:46 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-8fee04636c772441c95f3e0ff0cdb2e3-35e869a80719dcd6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-678c640225b760918500bbfc8153ee26-5f5a46acc520d738-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -154,17 +154,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a6fd210-ab9f-46dc-a39d-bc368a1cde3e", + "x-ms-correlation-request-id": "ff04a99c-d431-4e76-92a5-2ea0962328c0", "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190302Z:8a6fd210-ab9f-46dc-a39d-bc368a1cde3e", - "x-request-time": "0.019" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150246Z:ff04a99c-d431-4e76-92a5-2ea0962328c0", + "x-request-time": "0.021" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829", - "name": "e2etest_wps_conn_test_915486662829", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550", + "name": "e2etest_wps_conn_test_660365073550", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "AccessKey", @@ -178,44 +178,44 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Sat, 11 Mar 2023 19:03:01 GMT", + "Date": "Wed, 15 Mar 2023 15:02:47 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a39830fd93ad74e944552f8f9a3f1821-0681f694c4098362-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a46d342c4e6d57e73060ebf097eb4205-072b4e75f5880850-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": "fea36335-2562-43cd-9cdf-790720a064a2", + "x-ms-correlation-request-id": "e8131d91-c6b3-453f-985b-b0cd0dbd22b5", "x-ms-ratelimit-remaining-subscription-deletes": "14994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190302Z:fea36335-2562-43cd-9cdf-790720a064a2", - "x-request-time": "0.210" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150247Z:e8131d91-c6b3-453f-985b-b0cd0dbd22b5", + "x-request-time": "0.254" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_915486662829?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_660365073550?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -223,7 +223,7 @@ "Cache-Control": "no-cache", "Content-Length": "688", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:03:01 GMT", + "Date": "Wed, 15 Mar 2023 15:02:47 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", @@ -231,17 +231,17 @@ "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90017422-9b2c-4950-bfe1-0155a7f285ec", + "x-ms-correlation-request-id": "982c1e67-e1c8-43bc-8eeb-4180abb9ce19", "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190302Z:90017422-9b2c-4950-bfe1-0155a7f285ec", - "x-request-time": "0.022" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150247Z:982c1e67-e1c8-43bc-8eeb-4180abb9ce19", + "x-request-time": "0.019" }, "ResponseBody": { "error": { "code": "UserError", "severity": null, - "message": "Connection e2etest_wps_conn_test_915486662829 can\u0027t be found in this workspace", + "message": "Connection e2etest_wps_conn_test_660365073550 can\u0027t be found in this workspace", "messageFormat": null, "messageParameters": null, "referenceCode": null, @@ -256,12 +256,12 @@ "additionalInfo": null }, "correlation": { - "operation": "5cb755bbdd284df96d628e1b773227b6", - "request": "af4acccc07de9ad1" + "operation": "5b0e0bde420ff38588128b704e620e65", + "request": "01f48fba2a5dc2cb" }, "environment": "master", "location": "westus2", - "time": "2023-03-11T19:03:02.7287881\u002B00:00", + "time": "2023-03-15T15:02:47.7005272\u002B00:00", "componentName": "account-rp" } }, @@ -272,7 +272,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -280,11 +280,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:03:01 GMT", + "Date": "Wed, 15 Mar 2023 15:02:47 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-a6d422cb664be95518eddf077c82cff6-89ad3b0f14d5fd7d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bd49e5808c4d7299d91934ffda2176ab-c3a7a94d23c2766f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -293,11 +293,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ff97b83-4216-4b70-9906-582571332b68", + "x-ms-correlation-request-id": "6e0e495f-8648-4b7e-b9a1-832a43cc15fb", "x-ms-ratelimit-remaining-subscription-reads": "11982", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190302Z:0ff97b83-4216-4b70-9906-582571332b68", - "x-request-time": "0.026" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150247Z:6e0e495f-8648-4b7e-b9a1-832a43cc15fb", + "x-request-time": "0.014" }, "ResponseBody": { "value": [ @@ -322,6 +322,6 @@ } ], "Variables": { - "wps_connection_name": "test_915486662829" + "wps_connection_name": "test_660365073550" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_snowflake_user_pwd.json b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_snowflake_user_pwd.json index caf0a46e43a6..7712ca7aac43 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_snowflake_user_pwd.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/workspace/e2etests/test_workspace_connections.pyTestWorkspaceConnectionstest_workspace_connections_create_update_and_delete_snowflake_user_pwd.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -27,11 +27,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:57 GMT", + "Date": "Wed, 15 Mar 2023 15:02:42 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-3e0a39c3e56d79697e46151fd1480fe2-dbafce57bbb8bb33-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d2aa9f20fec8d3a540ef27ea4cde5d7a-7af2feb1c20394c7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -40,17 +40,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47d6abc9-ca41-4a3d-a9f5-016916c069a4", + "x-ms-correlation-request-id": "c2b866a5-0190-40da-823b-2e51a02eb4e5", "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190258Z:47d6abc9-ca41-4a3d-a9f5-016916c069a4", - "x-request-time": "0.184" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150243Z:c2b866a5-0190-40da-823b-2e51a02eb4e5", + "x-request-time": "0.284" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454", - "name": "e2etest_wps_conn_test_866622857454", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952", + "name": "e2etest_wps_conn_test_318535604952", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "UsernamePassword", @@ -64,7 +64,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952?api-version=2022-12-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -72,7 +72,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -90,11 +90,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:57 GMT", + "Date": "Wed, 15 Mar 2023 15:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-aa507da2122da5bfeb4433dddd45c9ae-63f1249db40e0903-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-62f1f4b2518c2c232c530c7114b8400d-3f6d36e0be97af51-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -103,17 +103,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01e337de-6dfe-4074-9eba-66f6f74ce3f4", + "x-ms-correlation-request-id": "ae7f0b63-99bf-43dc-bc04-eec4d27dc1ee", "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190258Z:01e337de-6dfe-4074-9eba-66f6f74ce3f4", - "x-request-time": "0.185" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150243Z:ae7f0b63-99bf-43dc-bc04-eec4d27dc1ee", + "x-request-time": "0.237" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454", - "name": "e2etest_wps_conn_test_866622857454", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952", + "name": "e2etest_wps_conn_test_318535604952", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "UsernamePassword", @@ -127,13 +127,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -141,11 +141,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:57 GMT", + "Date": "Wed, 15 Mar 2023 15:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d0c98792f597ecd4ce3a574a64509bac-777d71b7b5294683-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-78c4db6cfd4ebd6bfc4fe083b7fba0a8-93f982998c8a58bc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -154,17 +154,17 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41c95ad4-1c08-4989-bcfa-ec190e16e873", + "x-ms-correlation-request-id": "46f23735-c229-4cc8-9932-68a900a44958", "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190258Z:41c95ad4-1c08-4989-bcfa-ec190e16e873", - "x-request-time": "0.017" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150243Z:46f23735-c229-4cc8-9932-68a900a44958", + "x-request-time": "0.028" }, "ResponseBody": { "tags": null, "location": null, - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454", - "name": "e2etest_wps_conn_test_866622857454", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952", + "name": "e2etest_wps_conn_test_318535604952", "type": "Microsoft.MachineLearningServices/workspaces/connections", "properties": { "authType": "UsernamePassword", @@ -178,44 +178,44 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952?api-version=2022-12-01-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Sat, 11 Mar 2023 19:02:58 GMT", + "Date": "Wed, 15 Mar 2023 15:02:44 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-4e77ec54dd5e08f39bd1d11f2f7ba3dd-c61dabd166a4143a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e4f50346ddff43a6efd409ebd9637822-b9cd9b013299e427-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": "5cdf3e9b-0d35-4757-955d-5b95e3f7ccfa", + "x-ms-correlation-request-id": "ac020dc8-1fc4-4f4d-ab24-fcb0dbf66190", "x-ms-ratelimit-remaining-subscription-deletes": "14995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190259Z:5cdf3e9b-0d35-4757-955d-5b95e3f7ccfa", - "x-request-time": "0.197" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150244Z:ac020dc8-1fc4-4f4d-ab24-fcb0dbf66190", + "x-request-time": "0.224" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_866622857454?api-version=2022-12-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/connections/e2etest_wps_conn_test_318535604952?api-version=2022-12-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -223,7 +223,7 @@ "Cache-Control": "no-cache", "Content-Length": "687", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:58 GMT", + "Date": "Wed, 15 Mar 2023 15:02:44 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", @@ -231,17 +231,17 @@ "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0a3a40e-f6d4-49f2-a77b-39c199670909", + "x-ms-correlation-request-id": "5c4847d6-eb6f-4341-aad1-2889669bfc01", "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "error", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190259Z:a0a3a40e-f6d4-49f2-a77b-39c199670909", - "x-request-time": "0.022" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150244Z:5c4847d6-eb6f-4341-aad1-2889669bfc01", + "x-request-time": "0.120" }, "ResponseBody": { "error": { "code": "UserError", "severity": null, - "message": "Connection e2etest_wps_conn_test_866622857454 can\u0027t be found in this workspace", + "message": "Connection e2etest_wps_conn_test_318535604952 can\u0027t be found in this workspace", "messageFormat": null, "messageParameters": null, "referenceCode": null, @@ -256,12 +256,12 @@ "additionalInfo": null }, "correlation": { - "operation": "c0e874dcabf01bface559f623023e2a4", - "request": "70bf8ee49b47e4e1" + "operation": "0741649845fd7b67734f5ff6cf4f14f5", + "request": "78493787c4080fb4" }, "environment": "master", "location": "westus2", - "time": "2023-03-11T19:02:59.314461\u002B00:00", + "time": "2023-03-15T15:02:44.578839\u002B00:00", "componentName": "account-rp" } }, @@ -272,7 +272,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/1.5.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" + "User-Agent": "azure-ai-ml/1.6.0 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.10.6 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -280,11 +280,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Sat, 11 Mar 2023 19:02:58 GMT", + "Date": "Wed, 15 Mar 2023 15:02:44 GMT", "Expires": "-1", "Pragma": "no-cache", "request-context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-97b30769f80c16eef4f7aafa57d5bc4f-3565f71bacd05b23-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d8ee0dd30192f6592e9dbf4c5db56190-74ea419676f89f7d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -293,11 +293,11 @@ ], "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06277f4a-2dcd-49b6-848e-498186aad884", + "x-ms-correlation-request-id": "bef34de9-f591-4df1-a70d-0fe04e103c6a", "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "WESTCENTRALUS:20230311T190259Z:06277f4a-2dcd-49b6-848e-498186aad884", - "x-request-time": "0.011" + "x-ms-routing-request-id": "WESTCENTRALUS:20230315T150244Z:bef34de9-f591-4df1-a70d-0fe04e103c6a", + "x-request-time": "0.014" }, "ResponseBody": { "value": [ @@ -322,6 +322,6 @@ } ], "Variables": { - "wps_connection_name": "test_866622857454" + "wps_connection_name": "test_318535604952" } }